HomeSort by relevance Sort by last modified time
    Searched refs:handles (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium/base/
sync_socket_posix.cc 31 Handle handles[2] = { kInvalidHandle, kInvalidHandle }; local
46 if (socketpair(AF_UNIX, SOCK_STREAM, 0, handles) != 0) {
52 if (0 != setsockopt(handles[0], SOL_SOCKET, SO_NOSIGPIPE,
54 0 != setsockopt(handles[1], SOL_SOCKET, SO_NOSIGPIPE,
59 // Copy the handles out for successful return.
60 tmp_sockets[0]->handle_ = handles[0];
62 tmp_sockets[1]->handle_ = handles[1];
67 if (handles[0] != kInvalidHandle)
68 (void) close(handles[0]);
69 if (handles[1] != kInvalidHandle
    [all...]
sync_socket_win.cc 37 Handle handles[2]; local
59 handles[0] = CreateNamedPipeW(
68 if (handles[0] == INVALID_HANDLE_VALUE &&
73 } while (handles[0] == INVALID_HANDLE_VALUE);
74 handles[1] = CreateFileW(name,
82 if (handles[1] == INVALID_HANDLE_VALUE) {
83 CloseHandle(handles[0]);
86 if (ConnectNamedPipe(handles[0], NULL) == FALSE) {
89 CloseHandle(handles[0]);
90 CloseHandle(handles[1])
    [all...]
waitable_event_win.cc 78 HANDLE handles[MAXIMUM_WAIT_OBJECTS]; local
83 handles[i] = events[i]->handle();
88 handles,
condition_variable_win.cc 76 std::stack<HANDLE> handles; // See FAQ-question-10. local
83 handles.push(waiting_list_.PopBack()->handle());
85 while (!handles.empty()) {
86 SetEvent(handles.top());
87 handles.pop();
  /external/bluetooth/glib/glib/
gpoll.c 136 HANDLE *handles,
148 /* Wait for either messages or handles
154 ready = MsgWaitForMultipleObjectsEx (nhandles, handles, timeout,
166 /* No handles to wait for, just the timeout */
177 /* Wait for just handles
183 ready = WaitForMultipleObjectsEx (nhandles, handles, FALSE, timeout, TRUE);
210 /* If we have a timeout, or no handles to poll, be satisfied
216 /* If no timeout and handles to poll, recurse to poll them,
219 recursed_result = poll_rest (FALSE, handles, nhandles, fds, nfds, 0);
226 if ((HANDLE) f->fd == handles[ready - WAIT_OBJECT_0]
259 HANDLE handles[MAXIMUM_WAIT_OBJECTS]; local
    [all...]
  /external/chromium/third_party/icu/source/common/
brkeng.h 50 * <p>Indicate whether this engine handles a particular character for
55 * @return TRUE if this engine handles the particular character and break
58 virtual UBool handles(UChar32 c, int32_t breakType) const = 0;
142 * handles characters that no other LanguageBreakEngine is available to
175 * <p>Indicate whether this engine handles a particular character for
180 * @return TRUE if this engine handles the particular character and break
183 virtual UBool handles(UChar32 c, int32_t breakType) const;
dictbe.h 69 * <p>Indicate whether this engine handles a particular character for
74 * @return TRUE if this engine handles the particular character and break
77 virtual UBool handles( UChar32 c, int32_t breakType ) const;
brkeng.cpp 70 UnhandledEngine::handles(UChar32 c, int32_t breakType) const { function in class:UnhandledEngine
155 if (lbe != NULL && lbe->handles(c, breakType)) {
201 if (lbe != NULL && lbe->handles(c, breakType)) {
  /external/icu4c/common/
brkeng.h 50 * <p>Indicate whether this engine handles a particular character for
55 * @return TRUE if this engine handles the particular character and break
58 virtual UBool handles(UChar32 c, int32_t breakType) const = 0;
142 * handles characters that no other LanguageBreakEngine is available to
175 * <p>Indicate whether this engine handles a particular character for
180 * @return TRUE if this engine handles the particular character and break
183 virtual UBool handles(UChar32 c, int32_t breakType) const;
dictbe.h 69 * <p>Indicate whether this engine handles a particular character for
74 * @return TRUE if this engine handles the particular character and break
77 virtual UBool handles( UChar32 c, int32_t breakType ) const;
brkeng.cpp 69 UnhandledEngine::handles(UChar32 c, int32_t breakType) const { function in class:UnhandledEngine
154 if (lbe != NULL && lbe->handles(c, breakType)) {
200 if (lbe != NULL && lbe->handles(c, breakType)) {
  /external/wpa_supplicant/
eloop_win.c 75 HANDLE *handles; member in struct:eloop_data
87 eloop.handles = os_malloc(eloop.num_handles *
88 sizeof(eloop.handles[0]));
89 if (eloop.handles == NULL)
96 os_free(eloop.handles);
110 n = os_realloc(eloop.handles,
111 eloop.num_handles * 2 * sizeof(eloop.handles[0]));
114 eloop.handles = n;
476 eloop.handles[count++] = eloop.events[i].event;
479 eloop.handles[count++] = eloop.readers[i].event
    [all...]
l2_packet_ndis.c 162 HANDLE handles[2]; local
189 handles[0] = l2_ndisuio_global->stop_request;
190 handles[1] = l2_ndisuio_global->rx_processed;
191 WaitForMultipleObjects(2, handles, FALSE, INFINITE);
200 HANDLE handles[2]; local
204 handles[0] = l2_ndisuio_global->stop_request;
205 handles[1] = l2_ndisuio_global->ready_for_read;
225 res = WaitForMultipleObjects(2, handles, FALSE, INFINITE);
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop_win.c 75 HANDLE *handles; member in struct:eloop_data
87 eloop.handles = os_malloc(eloop.num_handles *
88 sizeof(eloop.handles[0]));
89 if (eloop.handles == NULL)
96 os_free(eloop.handles);
110 n = os_realloc(eloop.handles,
111 eloop.num_handles * 2 * sizeof(eloop.handles[0]));
114 eloop.handles = n;
475 eloop.handles[count++] = eloop.events[i].event;
478 eloop.handles[count++] = eloop.readers[i].event
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
codegen-temporaries-multiple-global-blocks-2.js 2 'Tests whether bytecode codegen properly handles temporaries across multiple global blocks.'
  /development/simulator/app/
Pipe.cpp 94 HANDLE handles[2]; local
101 if (!CreatePipe(&handles[0], &handles[1], &saAttr, 0)) {
105 mReadHandle = (unsigned long) handles[0];
106 mWriteHandle = (unsigned long) handles[1];
  /external/v8/test/mjsunit/
debug-handle.js 101 lookupRequest(exec_state, '{"handles":["a"]}', false);
102 lookupRequest(exec_state, '{"handles":[-1]}', false);
104 // Evaluate and get some handles.
115 response = lookupRequest(exec_state, '{"handles":[' + handle_o + ']}', true);
133 response = lookupRequest(exec_state, '{"handles":[' + handle_p + ']}', true);
138 // Check handles for functions on the stack.
146 response = lookupRequest(exec_state, '{"handles":[' + handle_f + ']}', true);
153 var arguments = '{"handles":[' + ref + ']}';
184 var arguments = '{"handles":[' + refs.join(',') + ']}';
  /external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/
l2_packet_ndis.c 162 HANDLE handles[2]; local
189 handles[0] = l2_ndisuio_global->stop_request;
190 handles[1] = l2_ndisuio_global->rx_processed;
191 WaitForMultipleObjects(2, handles, FALSE, INFINITE);
200 HANDLE handles[2]; local
204 handles[0] = l2_ndisuio_global->stop_request;
205 handles[1] = l2_ndisuio_global->ready_for_read;
225 res = WaitForMultipleObjects(2, handles, FALSE, INFINITE);
  /external/v8/src/
global-handles.h 36 // Structure for tracking global handles.
37 // A single list keeps all the allocated global handles.
38 // Destroyed handles stay in the list but is added to the free list.
39 // At GC the destroyed global handles are removed from the free list
42 // Callback function on handling weak global handles.
70 // handles point to an object the handles are cleared and the callback
78 // Returns the current number of weak handles.
83 // Returns the current number of weak handles to global objects.
84 // These handles are also included in NumberOfWeakHandles()
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 98 // Setup STARTUPINFO to redirect handles.
122 TRUE, // inherit handles?
158 HANDLE handles[2]; local
162 handles[handle_count++] = child_stdin_;
165 handles[handle_count++] = child_stdout_;
169 WaitForMultipleObjects(handle_count, handles, FALSE, INFINITE);
174 signaled_handle = handles[wait_result - WAIT_OBJECT_0];
  /dalvik/vm/mterp/armv4t/
OP_AGET_WIDE.S 22 @ branch prediction (if any) handles conditional forward branches vs.
OP_APUT_WIDE.S 21 @ branch prediction (if any) handles conditional forward branches vs.
  /dalvik/vm/mterp/armv5te/
OP_AGET_WIDE.S 22 @ branch prediction (if any) handles conditional forward branches vs.
OP_APUT_WIDE.S 23 @ branch prediction (if any) handles conditional forward branches vs.
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
FileChannelImpl.java 292 int[] handles = new int[length]; local
304 handles[i] = ((DirectBuffer) buffer).getEffectiveAddress().toInt();
313 bytesRead = fileSystem.readv(handle, handles, offsets,
550 int[] handles = new int[length]; local
570 handles[i] = ((DirectBuffer) buffer).getEffectiveAddress().toInt();
580 bytesWritten = fileSystem.writev(handle, handles, offsets,

Completed in 274 milliseconds

1 2 3