HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 126 - 150 of 3441) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcSecureElement.java 53 private native boolean doNativeDisconnectSecureElementConnection(int handle);
55 public boolean doDisconnect(int handle) {
59 return doNativeDisconnectSecureElementConnection(handle);
62 public native byte[] doTransceive(int handle, byte[] data);
64 public native int[] doGetTechList(int handle);
66 public native byte [] doGetUid(int handle);
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ShaderLang.cpp 24 static bool checkActiveUniformAndAttribMaxLengths(const ShHandle handle,
28 ShGetInfo(handle, SH_ACTIVE_UNIFORM_MAX_LENGTH, &activeUniformLimit);
30 ShGetInfo(handle, SH_ACTIVE_ATTRIBUTE_MAX_LENGTH, &activeAttribLimit);
34 static bool checkMappedNameMaxLength(const ShHandle handle, size_t expectedValue)
37 ShGetInfo(handle, SH_MAPPED_NAME_MAX_LENGTH, &mappedNameMaxLength);
42 const ShHandle handle,
50 if (!handle || !size || !type || !name)
55 TShHandleBase* base = reinterpret_cast<TShHandleBase*>(handle);
74 ASSERT(checkActiveUniformAndAttribMaxLengths(handle, activeUniformAndAttribLength));
81 ASSERT(checkMappedNameMaxLength(handle, maxMappedNameLength))
    [all...]
  /external/chromium/chrome/browser/automation/
testing_automation_provider_gtk.cc 15 void TestingAutomationProvider::ActivateWindow(int handle) {
19 void TestingAutomationProvider::IsWindowMaximized(int handle,
26 void TestingAutomationProvider::TerminateSession(int handle, bool* success) {
32 void TestingAutomationProvider::WindowGetViewBounds(int handle,
39 GtkWindow* window = window_tracker_->GetResource(handle);
61 void TestingAutomationProvider::GetWindowBounds(int handle,
68 void TestingAutomationProvider::SetWindowBounds(int handle,
72 GtkWindow* window = window_tracker_->GetResource(handle);
80 void TestingAutomationProvider::SetWindowVisible(int handle,
84 GtkWindow* window = window_tracker_->GetResource(handle);
    [all...]
  /external/chromium_org/media/base/
bitstream_buffer.h 17 BitstreamBuffer(int32 id, base::SharedMemoryHandle handle, size_t size)
19 handle_(handle),
24 base::SharedMemoryHandle handle() const { return handle_; } function in class:media::BitstreamBuffer
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtctexturevideoframe_unittest.cc 47 NativeHandleImpl handle; local
48 cricket::WebRtcTextureVideoFrame frame(&handle, 640, 480, 100, 200);
49 EXPECT_EQ(&handle, frame.GetNativeHandle());
61 NativeHandleImpl handle; local
62 cricket::WebRtcTextureVideoFrame frame1(&handle, 640, 480, 100, 200);
73 NativeHandleImpl handle; local
74 EXPECT_EQ(0, handle.ref_count());
76 new cricket::WebRtcTextureVideoFrame(&handle, 640, 480, 100, 200);
77 EXPECT_EQ(1, handle.ref_count());
79 EXPECT_EQ(2, handle.ref_count())
    [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_pan_co.h 81 BTA_API extern void bta_pan_co_open(UINT16 handle, UINT8 app_id, tBTA_PAN_ROLE local_role, tBTA_PAN_ROLE peer_role, BD_ADDR peer_addr);
94 BTA_API extern void bta_pan_co_close(UINT16 handle, UINT8 app_id);
109 BTA_API extern void bta_pan_co_tx_path(UINT16 handle, UINT8 app_id);
124 BTA_API extern void bta_pan_co_rx_path(UINT16 handle, UINT8 app_id);
139 BTA_API extern void bta_pan_co_tx_write(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, UINT8 *p_data,
155 BTA_API extern void bta_pan_co_tx_writebuf(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf,
173 BTA_API extern void bta_pan_co_rx_flow(UINT16 handle, UINT8 app_id, BOOLEAN enable);
185 BTA_API extern void bta_pan_co_pfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result,
197 BTA_API extern void bta_pan_co_mfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result,
  /external/bluetooth/bluedroid/btif/include/
btif_sm.h 64 ** Returns Returns a pointer to the initialized state machine handle.
79 void btif_sm_shutdown(btif_sm_handle_t handle);
90 btif_sm_state_t btif_sm_get_state(btif_sm_handle_t handle);
101 bt_status_t btif_sm_dispatch(btif_sm_handle_t handle, btif_sm_event_t event,
116 bt_status_t btif_sm_change_state(btif_sm_handle_t handle, btif_sm_state_t state);
btif_sock_thread.h 42 int btsock_thread_add_fd(int handle, int fd, int type, int flags, uint32_t user_id);
43 int btsock_thread_wakeup(int handle);
44 int btsock_thread_post_cmd(int handle, int cmd_type, const unsigned char* cmd_data,
47 int btsock_thread_exit(int handle);
  /external/chromium/chrome/browser/
browser_util_win.cc 19 static HANDLE handle = NULL; local
26 if (handle != NULL)
27 CloseHandle(handle);
28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
  /external/chromium/chrome/browser/sync/glue/
history_model_worker.h 39 CancelableRequestProvider::Handle handle) {}
42 CancelableRequestProvider::Handle handle) {}
45 CancelableRequestProvider::Handle handle) {}
48 CancelableRequestProvider::Handle handle) {}
  /external/chromium/third_party/libjingle/source/talk/base/
latebindingsymboltable.cc 53 DllHandle handle = dlopen(dll_name, RTLD_NOW); local
57 if (handle == kInvalidDllHandle) {
60 return handle;
63 void InternalUnloadDll(DllHandle handle) {
65 if (dlclose(handle) != 0) {
73 static bool LoadSymbol(DllHandle handle,
77 *symbol = dlsym(handle, symbol_name);
95 bool InternalLoadSymbols(DllHandle handle,
104 if (!LoadSymbol(handle, symbol_names[i], &symbols[i])) {
  /external/chromium_org/base/win/
scoped_handle.h 34 // - IsValid() method can tolerate multiple invalid handle values such as NULL
36 // - Receive() method allows to receive a handle value from a function that
37 // takes a raw handle pointer only.
43 typedef typename Traits::Handle Handle;
46 // a pointer, and allow proper tracking of the handle.
54 operator Handle*() { return &handle_; }
57 Handle handle_;
63 explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle())
    [all...]
  /external/chromium_org/content/common/
sandbox_util.cc 16 base::PlatformFile handle,
24 if (!content::BrokerDuplicateHandle(handle, target_process_id, &out_handle,
31 // When we're not closing the source, we need to duplicate the handle and take
33 // generate IPC messages, and the handle must remain valid until it's sent to
35 // close the source handle before the message is sent, creating a race
37 int fd = should_close_source ? handle : ::dup(handle);
sandbox_util.h 15 // Platform neutral wrapper for making an exact copy of a handle for use in
20 base::PlatformFile handle,
  /external/chromium_org/ppapi/cpp/private/
pass_file_handle.cc 19 PassFileHandle::PassFileHandle(PP_FileHandle handle)
20 : handle_(handle) {
23 PassFileHandle::PassFileHandle(PassFileHandle& handle)
24 : handle_(handle.Release()) {
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
htab.c 41 /* Make sure handle table handles match VDPAU handles. */
70 vlHandle handle = 0; local
73 handle = handle_table_add(htab, data);
75 return handle;
81 void* vlGetDataHTAB(vlHandle handle)
83 assert(handle);
88 data = handle_table_get(htab, handle);
92 return (void*)handle;
96 void vlRemoveDataHTAB(vlHandle handle)
101 handle_table_remove(htab, handle);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/
graw_null.c 12 void **handle)
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
dlopen.h 67 _mesa_dlsym(void *handle, const char *fname)
81 u.v = dlsym(handle, fname2);
83 u.v = dlsym(handle, fname);
85 u.v = (void *) GetProcAddress(handle, fname);
96 _mesa_dlclose(void *handle)
99 (void) handle;
101 dlclose(handle);
103 FreeLibrary(handle);
105 (void) handle;
  /external/chromium_org/ui/base/resource/
resource_bundle_win.h 19 UI_EXPORT void SetResourcesDataDLL(HINSTANCE handle);
  /external/iptables/include/
ip6tables.h 11 struct ip6tc_handle **handle);
13 extern int for_each_chain6(int (*fn)(const ip6t_chainlabel, int, struct ip6tc_handle *), int verbose, int builtinstoo, struct ip6tc_handle *handle);
14 extern int flush_entries6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
15 extern int delete_chain6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
  /external/libsepol/include/sepol/policydb/
hierarchy.h 30 extern int hierarchy_check_constraints(sepol_handle_t * handle, policydb_t * p);
  /external/mesa3d/src/gallium/state_trackers/vdpau/
htab.c 41 /* Make sure handle table handles match VDPAU handles. */
70 vlHandle handle = 0; local
73 handle = handle_table_add(htab, data);
75 return handle;
81 void* vlGetDataHTAB(vlHandle handle)
83 assert(handle);
88 data = handle_table_get(htab, handle);
92 return (void*)handle;
96 void vlRemoveDataHTAB(vlHandle handle)
101 handle_table_remove(htab, handle);
    [all...]
  /external/mesa3d/src/gallium/targets/graw-null/
graw_null.c 12 void **handle)
  /external/mesa3d/src/mesa/main/
dlopen.h 67 _mesa_dlsym(void *handle, const char *fname)
81 u.v = dlsym(handle, fname2);
83 u.v = dlsym(handle, fname);
85 u.v = (void *) GetProcAddress(handle, fname);
96 _mesa_dlclose(void *handle)
99 (void) handle;
101 dlclose(handle);
103 FreeLibrary(handle);
105 (void) handle;
  /external/qemu/elff/
elff_api.h 28 /* Defines type for a handle used in ELFF API. */
115 * On success, this routine returns a handle that can be used in subsequent
118 * NOTE: handle returned from this routine must be closed using elff_close().
122 /* Closes a handle obtained after successful call to elff_init routine.
124 * handle - A handle to close. This handle must be a handle returned from
127 void elff_close(ELFF_HANDLE handle);
130 * handle - A handle obtained from successful call to elff_init().
    [all...]

Completed in 2938 milliseconds

1 2 3 4 56 7 8 91011>>