Searched defs:handle (Results 251 - 275 of 1314) sorted by relevance

<<11121314151617181920>>

/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_ataridevmouse.c42 static int handle = -1; variable
61 handle = open(mousedev, 0);
65 if (handle<0) {
66 handle = open(DEVICE_NAME, 0);
69 if (handle<0) {
70 handle = -1;
75 r = fcntl(handle, F_GETFL, 0);
77 close(handle);
78 handle = -1;
84 r = fcntl(handle, F_SETF
[all...]
/external/skia/src/gpu/gl/mac/
H A DGrGLCreateNativeInterface_mac.cpp30 void* handle() { function in class:GLLoader
39 return dlsym(gLoader.handle(), name);
/external/v8/test/cctest/
H A Dtest-weakmaps.cc60 static void WeakPointerCallback(v8::Persistent<v8::Value> handle, void* id) { argument
63 handle.Dispose();
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
H A DJndiLoginModuleTest.java293 public void handle(Callback[] callbacks) throws IOException, method in class:JndiLoginModuleTest.MockCallbackHandler
311 public void handle(Callback[] callbacks) throws IOException, method in class:JndiLoginModuleTest.FaultCallbackHandler
H A DLdapLoginModuleTest.java299 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { method in class:LdapLoginModuleTest.MockCallbackHandler
319 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { method in class:LdapLoginModuleTest.FaultCallbackHandler
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java56 public void setHandleRedirects (final boolean handle) { argument
57 params.setBooleanParameter(ClientPNames.HANDLE_REDIRECTS, handle);
72 public void setHandleAuthentication (final boolean handle) { argument
73 params.setBooleanParameter(ClientPNames.HANDLE_AUTHENTICATION, handle);
/external/bison/lib/
H A Dfcntl.c273 HANDLE handle = (HANDLE) _get_osfhandle (fd); local
275 if (handle == INVALID_HANDLE_VALUE
276 || GetHandleInformation (handle, &flags) == 0)
292 changing the HANDLE_FLAG_INHERIT bit on the underlying handle
294 handle, using _open_osfhandle with the right flags, then
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_api.c160 void BTA_AgDeregister(UINT16 handle) argument
167 p_buf->layer_specific = handle;
185 void BTA_AgOpen(UINT16 handle, BD_ADDR bd_addr, tBTA_SEC sec_mask, tBTA_SERVICE_MASK services) argument
192 p_buf->hdr.layer_specific = handle;
211 void BTA_AgClose(UINT16 handle) argument
218 p_buf->layer_specific = handle;
234 void BTA_AgAudioOpen(UINT16 handle) argument
241 p_buf->layer_specific = handle;
257 void BTA_AgAudioClose(UINT16 handle) argument
264 p_buf->layer_specific = handle;
282 BTA_AgResult(UINT16 handle, tBTA_AG_RES result, tBTA_AG_RES_DATA *p_data) argument
311 BTA_AgSetCodec(UINT16 handle, tBTA_AG_PEER_CODEC codec) argument
[all...]
/external/bluetooth/bluedroid/bta/pan/
H A Dbta_pan_ci.c53 void bta_pan_ci_tx_ready(UINT16 handle) argument
59 p_buf->layer_specific = handle;
78 void bta_pan_ci_rx_ready(UINT16 handle) argument
84 p_buf->layer_specific = handle;
96 ** disable data flow when it is congested and cannot handle
105 void bta_pan_ci_tx_flow(UINT16 handle, BOOLEAN enable) argument
111 p_buf->hdr.layer_specific = handle;
130 void bta_pan_ci_rx_write(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol, argument
151 p_buf->layer_specific = handle;
173 void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADD argument
201 bta_pan_ci_readbuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16* p_protocol, BOOLEAN* p_ext, BOOLEAN* p_forward) argument
234 bta_pan_ci_set_mfilters(UINT16 handle, UINT16 num_mcast_filters, UINT8 *p_start_array, UINT8 *p_end_array) argument
253 bta_pan_ci_set_pfilters(UINT16 handle, UINT16 num_filters, UINT16 *p_start_array, UINT16 *p_end_array) argument
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock.c76 int handle = btsock_thread_create(btsock_signaled, NULL); local
77 if(handle >= 0 && btsock_rfc_init(handle) == BT_STATUS_SUCCESS)
/external/bluetooth/bluedroid/stack/avct/
H A Davct_api.c145 /* get handle */
193 UINT16 AVCT_RemoveConn(UINT8 handle) argument
200 /* map handle to ccb */
201 if ((p_ccb = avct_ccb_by_idx(handle)) == NULL)
234 UINT16 AVCT_CreateBrowse (UINT8 handle, UINT8 role) argument
244 /* map handle to ccb */
245 if ((p_ccb = avct_ccb_by_idx(handle)) == NULL)
309 UINT16 AVCT_RemoveBrowse (UINT8 handle) argument
317 /* map handle to ccb */
318 if ((p_ccb = avct_ccb_by_idx(handle))
343 AVCT_GetBrowseMtu(UINT8 handle) argument
367 AVCT_GetPeerMtu(UINT8 handle) argument
405 AVCT_MsgReq(UINT8 handle, UINT8 label, UINT8 cr, BT_HDR *p_msg) argument
[all...]
/external/bluetooth/bluedroid/stack/pan/
H A Dpan_utils.c183 tPAN_CONN *pan_allocate_pcb (BD_ADDR p_bda, UINT16 handle) argument
190 pan_cb.pcb[i].handle == handle)
207 pan_cb.pcb[i].handle = handle;
224 tPAN_CONN *pan_get_pcb_by_handle (UINT16 handle) argument
231 pan_cb.pcb[i].handle == handle)
290 BNEP_Disconnect (pan_cb.pcb[i].handle);
340 sprintf (buff, "%d state %d, handle
[all...]
/external/chromium/base/memory/
H A Dweak_ptr.cc10 WeakReference::Flag::Flag(Flag** handle) : handle_(handle) { argument
/external/chromium/base/synchronization/
H A Dlock_unittest.cc52 PlatformThreadHandle handle = kNullThreadHandle; local
54 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
82 PlatformThread::Join(handle);
118 PlatformThreadHandle handle = kNullThreadHandle; local
120 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
122 PlatformThread::Join(handle);
132 PlatformThreadHandle handle = kNullThreadHandle; local
134 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
136 PlatformThread::Join(handle);
179 PlatformThreadHandle handle local
[all...]
H A Dwaitable_event_win.cc22 WaitableEvent::WaitableEvent(HANDLE handle) argument
23 : handle_(handle) {
24 CHECK(handle) << "Tried to create WaitableEvent from NULL handle";
83 handles[i] = events[i]->handle();
/external/chromium/chrome/browser/automation/
H A Dautomation_resource_tracker.h48 bool ContainsHandleImpl(int handle);
49 const void* GetResourceImpl(int handle);
83 // Adds the given resource to this tracker, and returns a handle that
85 // being tracked, the handle may be the same as one returned previously.
102 // Returns true if this tracker currently tracks the given handle.
103 bool ContainsHandle(int handle) { argument
104 return ContainsHandleImpl(handle);
107 // Returns the resource pointer associated with a given handle, or NULL
108 // if that handle is not present in the mapping.
110 T GetResource(int handle) { argument
[all...]
H A Dtesting_automation_provider_gtk.cc15 void TestingAutomationProvider::ActivateWindow(int handle) { argument
19 void TestingAutomationProvider::IsWindowMaximized(int handle, argument
26 void TestingAutomationProvider::TerminateSession(int handle, bool* success) { argument
32 void TestingAutomationProvider::WindowGetViewBounds(int handle, argument
39 GtkWindow* window = window_tracker_->GetResource(handle);
61 void TestingAutomationProvider::GetWindowBounds(int handle, argument
68 void TestingAutomationProvider::SetWindowBounds(int handle, argument
72 GtkWindow* window = window_tracker_->GetResource(handle);
80 void TestingAutomationProvider::SetWindowVisible(int handle, argument
84 GtkWindow* window = window_tracker_->GetResource(handle);
95 GetWindowTitle(int handle, string16* text) argument
[all...]
/external/chromium/chrome/browser/
H A Dfavicon_service.cc28 return request->handle();
44 return request->handle();
54 FaviconService::Handle handle = request->handle(); local
66 return handle;
96 request->handle(), history::FaviconData()));
/external/chromium/chrome/browser/sync/glue/
H A Dtyped_url_data_type_controller.h75 CancelableRequestProvider::Handle handle) {}
78 CancelableRequestProvider::Handle handle) {}
81 CancelableRequestProvider::Handle handle) {}
84 CancelableRequestProvider::Handle handle) {}
74 OnRequestAdded(CancelableRequestProvider* provider, CancelableRequestProvider::Handle handle) argument
77 OnRequestRemoved(CancelableRequestProvider* provider, CancelableRequestProvider::Handle handle) argument
80 WillExecute(CancelableRequestProvider* provider, CancelableRequestProvider::Handle handle) argument
83 DidExecute(CancelableRequestProvider* provider, CancelableRequestProvider::Handle handle) argument
/external/chromium/chrome/browser/ui/webui/options/
H A Dadvanced_options_utils_gtk.cc84 base::ProcessHandle handle; local
85 if (!base::LaunchApp(argv, no_files, false, &handle)) {
91 ProcessWatcher::EnsureProcessGetsReaped(handle);
/external/chromium/net/test/
H A Dtest_server_win.cc49 // If the caller wants the process handle, we won't close it.
79 // Writes |size| bytes to |handle| and sets |*unblocked| to true.
81 void UnblockPipe(HANDLE handle, DWORD size, bool* unblocked) { argument
88 CHECK(WriteFile(handle, unblock_data.data(), size, &bytes_written,
94 // Given a file handle, reads into |buffer| until |bytes_max| bytes
169 // Pass the handle on the command-line. Although HANDLE is a
174 // interoperability. When sharing a handle between 32-bit and 64-bit
176 // safe to truncate the handle (when passing it from 64-bit to
177 // 32-bit) or sign-extend the handle (when passing it from 32-bit to
/external/chromium_org/android_webview/browser/
H A Dgpu_memory_buffer_factory_impl.cc64 gfx::GpuMemoryBufferHandle handle; variable
65 handle.type = gfx::EGL_CLIENT_BUFFER;
66 handle.native_buffer = g_gl_draw_functions->get_native_buffer(buffer_id_);
67 return handle;
/external/chromium_org/base/synchronization/
H A Dwaitable_event_win.cc23 WaitableEvent::WaitableEvent(HANDLE handle) argument
24 : handle_(handle) {
25 CHECK(handle) << "Tried to create WaitableEvent from NULL handle";
86 handles[i] = events[i]->handle();
/external/chromium_org/base/threading/
H A Dplatform_thread.h45 explicit PlatformThreadHandle(Handle handle) argument
46 : handle_(handle),
50 PlatformThreadHandle(Handle handle, argument
52 : handle_(handle),
104 // Get the current handle.
123 // |*thread_handle| will be assigned a handle to the newly created thread,
126 // NOTE: When you are done with the thread handle, you must call Join to
151 static void SetThreadPriority(PlatformThreadHandle handle,
H A Dplatform_thread_android.cc58 void PlatformThread::SetThreadPriority(PlatformThreadHandle handle, argument
72 DCHECK_NE(handle.id_, kInvalidThreadId);
74 if (setpriority(PRIO_PROCESS, handle.id_, kNiceSetting))

Completed in 628 milliseconds

<<11121314151617181920>>