HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 76 - 100 of 1268) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/perfetto/include/perfetto/base/
task_runner.h 79 Watchdog::Timer handle = local
  /external/skia/tools/skiaserve/urlhandlers/
CmdHandler.cpp 21 int CmdHandler::handle(Request* request, MHD_Connection* connection, function in class:CmdHandler
ColorModeHandler.cpp 22 int ColorModeHandler::handle(Request* request, MHD_Connection* connection, function in class:ColorModeHandler
EnableGPUHandler.cpp 22 int EnableGPUHandler::handle(Request* request, MHD_Connection* connection, function in class:EnableGPUHandler
ImgHandler.cpp 22 int ImgHandler::handle(Request* request, MHD_Connection* connection, function in class:ImgHandler
OverdrawHandler.cpp 22 int OverdrawHandler::handle(Request* request, MHD_Connection* connection, function in class:OverdrawHandler
  /external/skqp/tools/skiaserve/urlhandlers/
CmdHandler.cpp 21 int CmdHandler::handle(Request* request, MHD_Connection* connection, function in class:CmdHandler
ColorModeHandler.cpp 22 int ColorModeHandler::handle(Request* request, MHD_Connection* connection, function in class:ColorModeHandler
EnableGPUHandler.cpp 22 int EnableGPUHandler::handle(Request* request, MHD_Connection* connection, function in class:EnableGPUHandler
ImgHandler.cpp 22 int ImgHandler::handle(Request* request, MHD_Connection* connection, function in class:ImgHandler
OverdrawHandler.cpp 22 int OverdrawHandler::handle(Request* request, MHD_Connection* connection, function in class:OverdrawHandler
  /external/tensorflow/tensorflow/compiler/xla/client/
global_data.h 34 // Gives ownership of the global data handle to this object.
35 GlobalData(ServiceInterface* parent, GlobalDataHandle handle);
37 // Unregisters the wrapped handle, which causes the service to
41 const GlobalDataHandle& handle() const { return handle_; } function in class:xla::GlobalData
48 // Detaches the global data handle from the object, such that the destructor
55 GlobalDataHandle handle_; // Handle being wrapped.
  /external/tensorflow/tensorflow/core/ops/
io_ops.cc 41 ShapeHandle handle; local
44 TF_RETURN_IF_ERROR(c->WithRank(c->input(i), 1, &handle));
45 TF_RETURN_IF_ERROR(c->WithValue(c->Dim(handle, 0), 2, &unused_handle));
  /external/desugar/java/com/google/devtools/build/android/desugar/
InvokeDynamicLambdaMethodCollector.java 18 import org.objectweb.asm.Handle;
71 public void visitInvokeDynamicInsn(String name, String desc, Handle bsm, Object... bsmArgs) {
76 Handle handle = (Handle) bsmArgs[1]; local
78 MethodInfo.create(handle.getOwner(), handle.getName(), handle.getDesc()));
  /art/runtime/native/
java_lang_invoke_MethodHandleImpl.cc 36 Handle<mirror::MethodHandleImpl> handle = hs.NewHandle( local
39 // Check the handle kind, we need to materialize a Field for field accessors,
41 const mirror::MethodHandle::Kind handle_kind = handle->GetHandleKind();
49 ArtField* const field = handle->GetTargetField();
53 ArtMethod* const method = handle->GetTargetMethod();
  /art/test/136-daemon-jni-shutdown/
daemon_jni_shutdown.cc 65 void* handle = dlopen(kIsDebugBuild ? "libarttestd.so" : "libarttest.so", RTLD_NOW); local
66 CHECK(handle != nullptr);
  /art/tools/ahat/src/main/com/android/ahat/
RootedHandler.java 33 public void handle(Doc doc, Query query) throws IOException { method in class:RootedHandler
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
7zFile.h 26 HANDLE handle; member in struct:__anon6302
  /external/capstone/contrib/cs_driver/cs_driver/
cs_driver.c 45 csh handle; local
68 &handle) != CS_ERR_OK) {
72 count = cs_disasm(handle, (uint8_t *)&cs_driver_hello, 0x80,
82 cs_close(&handle);
  /external/compiler-rt/test/asan/TestCases/Linux/
function-sections-are-bad.cc 19 void *handle = dlopen(path, RTLD_LAZY); local
20 if (!handle) fprintf(stderr, "%s\n", dlerror());
21 assert(handle != 0);
24 F f = (F)dlsym(handle, "call_rtl_from_dso");
29 dlclose(handle);
init-order-dlopen.cc 39 void *handle = dlopen(path.c_str(), RTLD_NOW); local
40 if (!handle) {
  /external/compiler-rt/test/asan/TestCases/Posix/
global-registration.c 40 void *handle = dlopen(libpath, RTLD_NOW); local
41 if (!handle) {
46 char *buffer = (char *)dlsym(handle, "buffer3");
  /external/compiler-rt/test/lsan/TestCases/
use_tls_dynamic.cc 19 void *handle = dlopen(path.c_str(), RTLD_LAZY); local
20 assert(handle != 0);
22 store_t StoreToTLS = (store_t)dlsym(handle, "StoreToTLS");
  /external/compiler-rt/test/tsan/
dtls.c 36 void *handle = dlopen(path, RTLD_LAZY); local
37 if (!handle) fprintf(stderr, "%s\n", dlerror());
38 assert(handle != 0);
39 GetTls = (get_t)dlsym(handle, "GetTls");
  /external/curl/docs/examples/
ftp-wildcard.c 46 /* curl easy handle */
47 CURL *handle; local
57 /* initialization of easy handle */
58 handle = curl_easy_init();
59 if(!handle) {
65 curl_easy_setopt(handle, CURLOPT_WILDCARDMATCH, 1L);
68 curl_easy_setopt(handle, CURLOPT_CHUNK_BGN_FUNCTION, file_is_coming);
71 curl_easy_setopt(handle, CURLOPT_CHUNK_END_FUNCTION, file_is_downloaded);
74 curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, write_it);
77 curl_easy_setopt(handle, CURLOPT_CHUNK_DATA, &data)
    [all...]

Completed in 782 milliseconds

1 2 34 5 6 7 8 91011>>