HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 276 - 300 of 2427) sorted by null

<<11121314151617181920>>

  /external/skia/include/atlastext/
SkAtlasTextTarget.h 27 * Creates a text drawing target. ?handle? is used to identify this rendering surface when
31 void* handle);
47 void* handle() const { return fHandle; } function in class:SkAtlasTextTarget
75 SkAtlasTextTarget(sk_sp<SkAtlasTextContext>, int width, int height, void* handle);
  /external/skia/src/gpu/gl/iOS/
GrGLMakeNativeInterface_iOS.cpp 26 void* handle() const { function in class:GLLoader
39 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skia/src/gpu/gl/mac/
GrGLMakeNativeInterface_mac.cpp 30 void* handle() const { function in class:GLLoader
43 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skia/tools/skiaserve/urlhandlers/
BreakHandler.cpp 22 int BreakHandler::handle(Request* request, MHD_Connection* connection, function in class:BreakHandler
  /external/skqp/include/atlastext/
SkAtlasTextTarget.h 27 * Creates a text drawing target. ?handle? is used to identify this rendering surface when
31 void* handle);
47 void* handle() const { return fHandle; } function in class:SkAtlasTextTarget
75 SkAtlasTextTarget(sk_sp<SkAtlasTextContext>, int width, int height, void* handle);
  /external/skqp/src/gpu/gl/iOS/
GrGLMakeNativeInterface_iOS.cpp 26 void* handle() const { function in class:GLLoader
39 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skqp/src/gpu/gl/mac/
GrGLMakeNativeInterface_mac.cpp 30 void* handle() const { function in class:GLLoader
43 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skqp/tools/skiaserve/urlhandlers/
BreakHandler.cpp 22 int BreakHandler::handle(Request* request, MHD_Connection* connection, function in class:BreakHandler
  /external/syslinux/efi/
diskio.c 48 EFI_HANDLE handle = priv->dev_handle; local
53 status = uefi_call_wrapper(BS->HandleProtocol, 3, handle,
58 status = uefi_call_wrapper(BS->HandleProtocol, 3, handle,
  /external/tensorflow/tensorflow/compiler/jit/
create_xla_launch_op.cc 51 FunctionLibraryRuntime::Handle handle; local
55 flr->Instantiate(ndef.op(), AttrSlice(&ndef.attr()), &handle));
56 const FunctionBody* fbody = flr->GetFunctionBody(handle);
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compilation_device.h 79 // handle() stores the XLA handle of the computation that the
82 const xla::ComputationDataHandle& handle() const { return handle_; } function in class:tensorflow::XlaExpression
92 // The XLA handle of the expression's computation.
  /external/tensorflow/tensorflow/compiler/xla/service/
execution_tracker.cc 53 int64 handle = next_handle_++; local
55 handle,
60 execution_handle.set_handle(handle);
64 tensorflow::Status ExecutionTracker::Unregister(const ExecutionHandle& handle) {
66 auto it = handle_to_execution_.find(handle.handle());
68 return NotFound("no execution record for execution handle: %lld",
69 handle.handle());
71 handle_to_execution_.erase(handle.handle())
    [all...]
  /external/tensorflow/tensorflow/core/framework/
load_library.cc 30 void* handle = nullptr; member in struct:tensorflow::__anon39566::Library
37 // On success, returns the handle to library in result, copies the serialized
42 // If `library_filename` has already been loaded, we return a cached handle
79 s = env->LoadLibrary(library_filename, &library.handle);
100 *result = library.handle;
  /external/tensorflow/tensorflow/core/kernels/
session_ops.cc 49 Tensor* handle = nullptr; variable
50 OP_REQUIRES_OK(ctx, ctx->allocate_output(0, TensorShape({}), &handle));
57 handle->scalar<ResourceHandle>()() = resource_handle;
60 handle->flat<string>().setConstant(tk.GetHandle(name()));
75 .HostMemory("handle") \
80 .HostMemory("handle") \
92 .HostMemory("handle") \
97 .HostMemory("handle") \
112 const Tensor& handle = ctx->input(0); variable
113 const string& name = handle.scalar<string>()()
155 const Tensor& handle = ctx->input(0); variable
    [all...]
  /external/v4l2_codec2/vda/
bitstream_buffer.h 35 base::SharedMemoryHandle handle,
45 base::SharedMemoryHandle handle() const { return handle_; } function in class:media::BitstreamBuffer
59 void set_handle(const base::SharedMemoryHandle& handle) { handle_ = handle; }
  /external/v8/tools/testrunner/server/
presence_handler.py 56 def handle(self): member in class:PresenceHandler
  /external/vboot_reference/firmware/stub/
vboot_api_stub_stream.c 19 /* Disk handle */
20 VbExDiskHandle_t handle; member in struct:disk_stream
29 VbError_t VbExStreamOpen(VbExDiskHandle_t handle, uint64_t lba_start,
34 if (!handle) {
40 s->handle = handle;
67 rv = VbExDiskRead(s->handle, s->sector, sectors, buffer);
  /external/vulkan-validation-layers/loader/
dirent_on_windows.c 25 handle_type handle; /* -1 for failed rewind */ member in struct:DIR
43 if ((dir->handle = (handle_type)_findfirst(dir->name, &dir->info)) != -1) {
68 if (dir->handle != -1) {
69 result = _findclose(dir->handle);
87 if (dir && dir->handle != -1) {
88 if (!dir->result.d_name || _findnext(dir->handle, &dir->info) != -1) {
100 if (dir && dir->handle != -1) {
101 _findclose(dir->handle);
102 dir->handle = (handle_type)_findfirst(dir->name, &dir->info);
  /external/webrtc/webrtc/modules/audio_processing/
processing_component.cc 58 void* ProcessingComponent::handle(size_t index) const { function in class:webrtc::ProcessingComponent
  /external/webrtc/webrtc/modules/desktop_capture/
shared_memory.h 34 typedef HANDLE Handle;
35 static const Handle kInvalidHandle;
37 typedef int Handle;
38 static const Handle kInvalidHandle;
44 // Platform-specific handle of the buffer.
45 Handle handle() const { return handle_; } function in class:webrtc::SharedMemory
54 SharedMemory(void* data, size_t size, Handle handle, int id)
    [all...]
  /frameworks/av/media/libmedia/
OMXBuffer.cpp 59 OMXBuffer::OMXBuffer(const sp<NativeHandle> &handle)
61 mNativeHandle(handle) {
105 return parcel->writeNativeHandle(mNativeHandle->handle());
160 sp<NativeHandle> handle = NativeHandle::create( local
163 mNativeHandle = handle;
  /frameworks/av/media/libstagefright/codecs/mp3dec/test/
mp3dec_test.cpp 80 SNDFILE *handle = sf_open(argv[2], SFM_WRITE, &sfInfo); local
81 if (handle == NULL) {
119 sf_writef_short(handle, outputBuf,
125 sf_close(handle);
  /frameworks/av/services/oboeservice/
AAudioStreamTracker.cpp 63 // The port handle is only available when the stream is started.
83 // advance to next legal handle value
85 aaudio_handle_t AAudioStreamTracker::bumpHandle(aaudio_handle_t handle) {
86 handle++;
88 if (handle <= 0) {
89 handle = 1;
91 return handle;
96 aaudio_handle_t handle = mPreviousHandle; local
97 // Assign a unique handle.
99 handle = bumpHandle(handle)
123 aaudio_handle_t handle = it.second->getHandle(); local
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_locksettings_SyntheticPasswordManager.cpp 41 const gatekeeper::password_handle_t *handle = local
43 jlong sid = handle->user_id;
  /frameworks/native/cmds/servicemanager/
bctest.c 13 uint32_t handle; local
25 handle = bio_get_ref(&reply);
27 if (handle)
28 binder_acquire(bs, handle);
32 return handle;
63 uint32_t handle; local
75 handle = svcmgr_lookup(bs, svcmgr, "alt_svc_mgr");
76 if (!handle) {
80 svcmgr = handle;
81 fprintf(stderr,"svcmgr is via %x\n", handle);
    [all...]

Completed in 349 milliseconds

<<11121314151617181920>>