HomeSort by relevance Sort by last modified time
    Searched full:handle (Results 701 - 725 of 15141) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/drm/
nouveau_drm.h 42 uint32_t handle; member in struct:drm_nouveau_channel_alloc::__anon32408
54 uint32_t handle; member in struct:drm_nouveau_grobj_alloc
60 uint32_t handle; member in struct:drm_nouveau_notifierobj_alloc
67 uint32_t handle; member in struct:drm_nouveau_gpuobj_free
105 uint32_t handle; member in struct:drm_nouveau_gem_info
129 uint32_t handle; member in struct:drm_nouveau_gem_pushbuf_bo
175 uint32_t handle; member in struct:drm_nouveau_gem_cpu_prep
180 uint32_t handle; member in struct:drm_nouveau_gem_cpu_fini
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntsdexts.h 28 typedef VOID (*PNTSD_EXTENSION_ROUTINE)(HANDLE hCurrentProcess,HANDLE hCurrentThread,DWORD dwCurrentPc,PNTSD_EXTENSION_APIS lpExtensionApis,LPSTR lpArgumentString);
sfc.h 34 WINBOOL WINAPI SfcGetNextProtectedFile(HANDLE RpcHandle,PPROTECTED_FILE_DATA ProtFileData);
35 WINBOOL WINAPI SfcIsFileProtected(HANDLE RpcHandle,LPCWSTR ProtFileName);
  /system/bt/bta/include/
bta_pan_ci.h 50 extern void bta_pan_ci_tx_ready(UINT16 handle);
65 extern void bta_pan_ci_rx_ready(UINT16 handle);
73 ** disable data flow when it is congested and cannot handle
82 extern void bta_pan_ci_tx_flow(UINT16 handle, BOOLEAN enable);
99 extern void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf, BOOLEAN ext);
114 extern BT_HDR * bta_pan_ci_readbuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16 *p_protocol,
127 extern void bta_pan_ci_set_pfilters(UINT16 handle, UINT16 num_filters, UINT16 *p_start_array, UINT16 *p_end_array);
140 extern void bta_pan_ci_set_mfilters(UINT16 handle, UINT16 num_mcast_filters, UINT8 *p_start_array,
  /system/bt/stack/pan/
pan_api.c 287 ** *handle - Pointer for returning Handle to the connection
297 tPAN_RESULT PAN_Connect (BD_ADDR rem_bda, UINT8 src_role, UINT8 dst_role, UINT16 *handle)
305 ** Initialize the handle so that in case of failure return values
308 *handle = BNEP_INVALID_HANDLE;
419 result = BNEP_Connect (rem_bda, &src_uuid, &dst_uuid, &(pcb->handle));
429 *handle = pcb->handle;
442 ** Parameters: handle - handle for the connectio
    [all...]
  /system/gatekeeper/tests/
gatekeeper_device_test.cpp 110 password_handle_t *handle = reinterpret_cast<password_handle_t *>(password_handle); local
111 secure_id_t sid = handle->user_id;
117 handle = reinterpret_cast<password_handle_t *>(password_handle);
118 ASSERT_NE(sid, handle->user_id);
134 password_handle_t *handle = reinterpret_cast<password_handle_t *>(password_handle); local
135 secure_id_t sid = handle->user_id;
141 handle = reinterpret_cast<password_handle_t *>(password_handle);
142 ASSERT_EQ(sid, handle->user_id);
  /development/host/windows/usb/api/
adb_api.cpp 56 // After successful initialization we can create handle.
77 // Lookup AdbInterfaceEnumObject object for the handle
92 // Lookup AdbInterfaceEnumObject object for the handle
130 // Create handle for it
203 // Lookup interface object for the handle
222 // Lookup interface object for the handle
239 // Lookup interface object for the handle
256 // Lookup interface object for the handle
273 // Lookup interface object for the handle
291 // Lookup interface object for the handle
    [all...]
adb_api.h 131 /** \brief Handle to an API object.
134 handle to the required object. API Objects that are represented by a
135 handle are:
138 has been created. This handle is created in AdbEnumInterfaces routine.
146 a device object on the Windows USB stack. This handle is created in
149 through which all I/O operations are performed. This handle is created in
157 of the API can then use a handle to I/O completion object to query for
159 completion. This handle is created in one of these routines:
161 After object is no longer needed by the client, its handle must be closed
227 @return Handle to the enumerator object or NULL on failure. If NULL is
    [all...]
  /external/deqp/framework/delibs/deutil/
deFile.c 52 deFile* deFile_createFromHandle (deUintptr handle)
54 int fd = (int)handle;
214 HANDLE handle; member in struct:deFile_s
227 deFile* deFile_createFromHandle (deUintptr handle)
232 CloseHandle((HANDLE)handle);
236 file->handle = (HANDLE)handle;
244 HANDLE handle = DE_NULL; local
    [all...]
  /external/v8/src/
unique.h 22 // Represents a handle to an object on the heap, but with the additional
25 // Creating a Unique<T> requires first dereferencing the handle to obtain
38 explicit Unique(Handle<T> handle) {
39 if (handle.is_null()) {
48 DCHECK(!AllowHeapAllocation::IsAllowed() || handle->IsMap());
49 raw_address_ = reinterpret_cast<Address>(*handle);
52 handle_ = handle;
56 Unique(Address raw_address, Handle<T> handle)
99 inline Handle<T> handle() const { function in class:v8::internal::Unique
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcm_mpool_pub.h 69 /* Forward declaration of OSL handle. */
76 * Opaque type definition for the pool manager handle. This object is used for global
84 * Opaque type definition for an instance of a pool. This handle is used for allocating
125 * osh: INPUT Operating system handle. Needed for heap memory allocation.
127 * mgr: OUTPUT The handle is written with the new pools manager object/handle.
140 * mgr: INPUT Pointer to pool manager handle.
156 * mgr: INPUT The handle to the pool manager
164 * newp: OUTPUT The handle for the new pool, if creation is successful
186 * mgr: INPUT The handle to the pools manage
    [all...]
  /art/runtime/
zip_archive.h 48 ZipEntry(ZipArchiveHandle handle,
49 ::ZipEntry* zip_entry) : handle_(handle), zip_entry_(zip_entry) {}
71 explicit ZipArchive(ZipArchiveHandle handle) : handle_(handle) {}
  /external/android-clat/
BUGS 2 - does not handle protocols other than ICMP, UDP, TCP and GRE
  /external/bzip2/
words0 8 handle so-called 'large files' -- files of size 2GB or more.
  /external/clang/test/Misc/
serialized-diags-frontend.c 5 // This test case tests that we can handle frontend diagnostics.
  /external/compiler-rt/test/asan/TestCases/Windows/
lit.local.cfg 9 # Override the parent directory's "unsupported" decision until we can handle
  /external/compiler-rt/test/msan/
dtls_test.c 42 void *handle = dlopen(path, RTLD_LAZY); local
43 if (!handle) fprintf(stderr, "%s\n", dlerror());
44 assert(handle != 0);
45 GetTls = (get_t)dlsym(handle, "GetTls");
  /external/iproute2/examples/diffserv/
efcbq 5 print "$TC qdisc add $DEV handle 1:0 root dsmark indices 64 set_tc_index\n";
8 print "$TC qdisc add $DEV parent 1:0 handle 2:0 cbq bandwidth ".
19 "handle 0x2e tcindex classid 2:1 pass_on\n";
31 "handle 0 tcindex mask 0 classid 2:2 pass_on\n";
  /external/libpcap/
pcap_set_buffer_size.3pcap 25 capture handle
37 sets the buffer size that will be used on a capture handle when
38 the handle is activated to
45 if called on a capture handle that has been activated.
pcap_set_immediate_mode.3pcap 24 handle
36 sets whether immediate mode should be set on a capture handle when
37 the handle is activated.
45 if called on a capture handle that has been activated.
pcap_set_promisc.3pcap 25 capture handle
37 sets whether promiscuous mode should be set on a capture handle when
38 the handle is activated.
46 if called on a capture handle that has been activated.
pcap_set_rfmon.3pcap 25 handle
37 sets whether monitor mode should be set on a capture handle when
38 the handle is activated.
46 if called on a capture handle that has been activated.
pcap_set_snaplen.3pcap 25 capture handle
37 sets the snapshot length to be used on a capture handle when the handle
44 if called on a capture handle that has been activated.
pcap_set_timeout.3pcap 25 capture handle
37 sets the read timeout that will be used on a capture handle when
38 the handle is activated to
48 if called on a capture handle that has been activated.
  /external/libvncserver/client_examples/
scrap.h 0 /* Handle clipboard text and data in arbitrary formats */

Completed in 419 milliseconds

<<21222324252627282930>>