Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 10 of 10) sorted by relevance

/CafeSDK-2.12.13-1/system/include/cafe/
Dhid.h48 u32 handle; member
83 u32 handle,
102 HID_ERROR_CODE HIDGetDescriptor(u32 handle, u8 descriptor_type, u8 descriptor_index, u16 language_i…
103 HID_ERROR_CODE HIDSetDescriptor(u32 handle, u8 descriptor_type, u8 descriptor_index, u16 language_i…
104 HID_ERROR_CODE HIDGetReport(u32 handle, u8 report_type, u8 report_id, u8 *p_buffer, u32 buffer_leng…
105 HID_ERROR_CODE HIDSetReport(u32 handle, u8 report_type, u8 report_id, u8 *p_buffer, u32 buffer_leng…
106 HID_ERROR_CODE HIDGetProtocol(u32 handle, u8 interface_index, u8 *p_protocol, HIDCallback async_cal…
107 HID_ERROR_CODE HIDSetProtocol(u32 handle, u8 interface_index, u8 protocol, HIDCallback async_callba…
108 HID_ERROR_CODE HIDGetIdle(u32 handle, u8 interface_index, u8 report_id, u8 *p_idle, HIDCallback asy…
109 HID_ERROR_CODE HIDSetIdle(u32 handle, u8 interface_index, u8 report_id, u8 duration, HIDCallback as…
[all …]
Dhio.h65 HIOStatus HIOClose(HIOHandle handle);
66 HIOStatus HIORead(HIOHandle handle, u32 sizeInBytes, void *pData);
67 HIOStatus HIOReadAsyncEx(HIOHandle handle, u32 sizeInBytes, void *pData,
69 HIOStatus HIOWrite(HIOHandle handle, u32 sizeInBytes, const void *pData);
70 HIOStatus HIOWriteAsyncEx(HIOHandle handle, u32 sizeInBytes, const void *pData,
107 inline HIOStatus HIOReadAsync(HIOHandle handle, u32 sizeInBytes, void *pData, in HIOReadAsync() argument
115 return HIOReadAsyncEx(handle, sizeInBytes, pData, &asyncStruct); in HIOReadAsync()
118 inline HIOStatus HIOWriteAsync(HIOHandle handle, u32 sizeInBytes, const void *pData, in HIOWriteAsync() argument
126 return HIOWriteAsyncEx(handle, sizeInBytes, pData, &asyncStruct); in HIOWriteAsync()
Dmp4dmx.h272 void *handle; member
284 void *handle; member
456 void *handle
472 void *handle
480 void *handle
488 void *handle,
499 void *handle
508 void *handle
515 void *handle
523 void *handle
[all …]
Duhs_cos.h56 UhsClientHandle handle; member
/CafeSDK-2.12.13-1/system/src/lib/szfile/
D7zFile.c31 p->handle = INVALID_HANDLE_VALUE; in File_Construct()
41 p->handle = CreateFileA(name, in File_Open()
46 return (p->handle != INVALID_HANDLE_VALUE) ? 0 : GetLastError(); in File_Open()
65 p->handle = CreateFileW(name, in File_OpenW()
70 return (p->handle != INVALID_HANDLE_VALUE) ? 0 : GetLastError(); in File_OpenW()
79 if (p->handle != INVALID_HANDLE_VALUE) in File_Close()
81 if (!CloseHandle(p->handle)) in File_Close()
83 p->handle = INVALID_HANDLE_VALUE; in File_Close()
110 BOOL res = ReadFile(p->handle, data, curSize, &processed, NULL); in File_Read()
145 BOOL res = WriteFile(p->handle, data, curSize, &processed, NULL); in File_Write()
[all …]
D7zFile.h26 HANDLE handle; member
/CafeSDK-2.12.13-1/system/include/cafe/net/
Dso.h300 extern int icmp_close_handle(int handle);
301 extern int icmp_ping(int handle, const void* data, int len, const struct sockaddr *dest_addr, int d…
302 extern int icmp_cancel(int handle);
303 extern int icmp_last_code_type(int handle);
/CafeSDK-2.12.13-1/system/include/cafe/curl/
Dcurl.h308 typedef curlioerr (*curl_ioctl_callback)(CURL *handle,
337 (CURL *handle, /* the handle/transfer this concerns */
1758 CURL_EXTERN char *curl_easy_escape(CURL *handle,
1778 CURL_EXTERN char *curl_easy_unescape(CURL *handle,
1991 typedef void (*curl_lock_function)(CURL *handle,
1995 typedef void (*curl_unlock_function)(CURL *handle,
2129 CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
2159 #define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param) argument
2160 #define curl_easy_getinfo(handle,info,arg) curl_easy_getinfo(handle,info,arg) argument
2162 #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param) argument
Dtypecheck-gcc.h41 #define curl_easy_setopt(handle, option, value) \ argument
106 curl_easy_setopt(handle, _curl_opt, value); \
111 #define curl_easy_getinfo(handle, info, arg) \ argument
128 curl_easy_getinfo(handle, _curl_info, arg); \
136 #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param) argument
/CafeSDK-2.12.13-1/system/src/tool/cafex/
DCharacter stream dumper.cs694 IntPtr handle = GetStdHandle(StdHandle.Stdin); in input_thread_proc()
697 if (handle == IntPtr.Zero || handle == INVALID_HANDLE_VALUE) in input_thread_proc()
703 if (!GetConsoleMode(handle, out mode)) in input_thread_proc()
711 if (!SetConsoleMode(handle, mode)) in input_thread_proc()
723 GetNumberOfConsoleInputEvents(handle, out numEvents); in input_thread_proc()
727 ReadConsoleInput(handle, eventBuffer, 128, out numEventsRead); in input_thread_proc()