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

1 2 3 4 5 6 7 8 91011>>

  /art/test/709-checker-varhandles/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/710-varhandle-creation/
build 20 ./default-build "$@" --experimental var-handles
  /art/test/713-varhandle-invokers/
build 20 ./default-build "$@" --experimental var-handles
  /art/test/714-invoke-custom-lambda-metafactory/
build 22 ./default-build "$@" --experimental method-handles
  /art/test/807-method-handle-and-mr/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/953-invoke-polymorphic-compiler/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/954-invoke-polymorphic-verifier/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/955-methodhandles-smali/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/956-methodhandles/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/957-methodhandle-transforms/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/958-methodhandle-stackframe/
build 20 ./default-build "$@" --experimental method-handles
  /art/test/959-invoke-polymorphic-accessors/
build 20 ./default-build "$@" --experimental method-handles
  /external/icu/android_icu4j/src/main/java/android/icu/text/
LanguageBreakEngine.java 25 boolean handles(int c, int breakType); method in interface:LanguageBreakEngine
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
LanguageBreakEngine.java 24 boolean handles(int c, int breakType); method in interface:LanguageBreakEngine
  /external/libdrm/tests/modetest/
buffers.h 36 unsigned int handles[4], unsigned int pitches[4],
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
CoreImplTest.java 74 private void addHandlePairToClose(Pair<? extends Handle, ? extends Handle> handles) {
75 mHandlesToClose.add(handles.first);
76 mHandlesToClose.add(handles.second);
192 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
193 addHandlePairToClose(handles);
195 // Test waiting on handles of a newly created message pipe - each should be writable, but
200 new Pair<Handle, Core.HandleSignals>(handles.second, Core.HandleSignals.READABLE));
202 new Pair<Handle, Core.HandleSignals>(handles.first, Core.HandleSignals.WRITABLE));
211 // Same test, but swap the handles around.
214 new Pair<Handle, Core.HandleSignals>(handles.first, Core.HandleSignals.WRITABLE))
233 Pair<? extends Handle, ? extends Handle> handles = core.createMessagePipe(null); local
253 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(options); local
275 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
332 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
346 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
370 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
391 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = local
420 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
433 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
462 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
556 List<Pair<Handle, Core.HandleSignals>> handles = local
570 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
590 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
610 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
655 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_shlib.c 65 } handles[128]; variable in typeref:struct:__anon4886
92 if (statb.st_dev == handles[i].dev &&
93 statb.st_ino == handles[i].ino) {
94 p = (dl_funcptr) dlsym(handles[i].handle,
100 handles[nhandles].dev = statb.st_dev;
102 handles[nhandles].ino[0] = statb.st_ino[0];
103 handles[nhandles].ino[1] = statb.st_ino[1];
104 handles[nhandles].ino[2] = statb.st_ino[2];
106 handles[nhandles].ino = statb.st_ino;
140 handles[nhandles++].handle = handle;
    [all...]
  /external/python/cpython2/Python/
dynload_shlib.c 65 } handles[128]; variable in typeref:struct:__anon32949
92 if (statb.st_dev == handles[i].dev &&
93 statb.st_ino == handles[i].ino) {
94 p = (dl_funcptr) dlsym(handles[i].handle,
100 handles[nhandles].dev = statb.st_dev;
102 handles[nhandles].ino[0] = statb.st_ino[0];
103 handles[nhandles].ino[1] = statb.st_ino[1];
104 handles[nhandles].ino[2] = statb.st_ino[2];
106 handles[nhandles].ino = statb.st_ino;
140 handles[nhandles++].handle = handle
    [all...]
  /external/libmojo/mojo/edk/system/
broker_host.cc 45 bool BrokerHost::PrepareHandlesForClient(PlatformHandleVector* handles) {
48 base::GetCurrentProcessHandle(), client_process_, handles)) {
51 // invalid handles appropriately.
52 DLOG(ERROR) << "Failed to rewrite one or more handles to broker client.";
72 ScopedPlatformHandleVectorPtr handles; local
73 handles.reset(new PlatformHandleVector(1));
74 handles->at(0) = handle.release();
78 if (!PrepareHandlesForClient(handles.get()))
81 message->SetHandles(std::move(handles));
113 ScopedPlatformHandleVectorPtr handles; local
    [all...]
broker_host.h 39 bool PrepareHandlesForClient(PlatformHandleVector* handles);
44 ScopedPlatformHandleVectorPtr handles) override;
  /external/curl/tests/libtest/
lib1900.c 34 static CURL *handles[MAX_URLS]; variable
107 handles[i] = curl_easy_init();
117 curl_easy_setopt(handles[handlenum], CURLOPT_URL, urlbuf);
118 curl_easy_setopt(handles[handlenum], CURLOPT_VERBOSE, 1L);
119 curl_easy_setopt(handles[handlenum], CURLOPT_FAILONERROR, 1L);
120 curl_easy_setopt(handles[handlenum], CURLOPT_WRITEFUNCTION, write_callback);
121 curl_easy_setopt(handles[handlenum], CURLOPT_WRITEDATA, NULL);
122 curl_multi_add_handle(m, handles[handlenum]);
130 if(handles[i])
131 curl_easy_cleanup(handles[i])
    [all...]
  /external/curl/docs/examples/
multi-app.c 48 CURL *handles[HANDLECOUNT]; local
51 int still_running; /* keep number of running handles */
59 handles[i] = curl_easy_init();
62 curl_easy_setopt(handles[HTTP_HANDLE], CURLOPT_URL, "http://example.com");
64 curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_URL, "ftp://example.com");
65 curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_UPLOAD, 1L);
72 curl_multi_add_handle(multi_handle, handles[i]);
154 found = (msg->easy_handle == handles[idx]);
172 /* Free the CURL handles */
174 curl_easy_cleanup(handles[i])
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Message.java 25 * The handles of the message.
38 * @param handles The list of handles to send.
40 public Message(ByteBuffer buffer, List<? extends Handle> handles) {
43 mHandle = handles;
54 * The handles of the message.
  /external/tpm2/
SessionProcess_fp.h 19 UINT32 handleNum, // IN: number of handles in command
20 TPM_HANDLE handles[], // IN: array of handle
29 TPM_HANDLE handles[], // IN: array of handle
  /art/compiler/optimizing/
select_generator.h 67 VariableSizedHandleScope* handles,

Completed in 595 milliseconds

1 2 3 4 5 6 7 8 91011>>