HomeSort by relevance Sort by last modified time
    Searched refs:new_handle (Results 1 - 20 of 20) sorted by null

  /external/libmojo/mojo/edk/embedder/
platform_handle_utils_win.cc 17 HANDLE new_handle; local
20 GetCurrentProcess(), &new_handle, 0, TRUE,
23 DCHECK_NE(new_handle, INVALID_HANDLE_VALUE);
24 return ScopedPlatformHandle(PlatformHandle(new_handle));
  /external/libchrome/base/memory/
shared_memory.h 211 // platform-specific new_handle which can be used in a remote process to read
212 // the shared memory file. new_handle is an output parameter to receive the
221 SharedMemoryHandle* new_handle) {
222 return ShareToProcessCommon(process, new_handle, false, SHARE_READONLY);
226 // bool ok = ShareReadOnlyToProcess(process, new_handle);
232 SharedMemoryHandle* new_handle) {
233 return ShareToProcessCommon(process, new_handle, true, SHARE_READONLY);
237 // to create a platform-specific new_handle which can be
239 // file. new_handle is an output parameter to receive
243 SharedMemoryHandle* new_handle) {
    [all...]
shared_memory_posix.cc 363 SharedMemoryHandle* new_handle,
389 new_handle->fd = new_fd;
390 new_handle->auto_close = true;
  /system/tpm/trunks/
scoped_key_handle.h 43 // and has the class wrap |new_handle|
44 virtual void reset(TPM_HANDLE new_handle);
scoped_key_handle_test.cc 71 TPM_HANDLE new_handle = TPM_RH_NULL; local
76 scoped_handle.reset(new_handle);
77 EXPECT_EQ(new_handle, scoped_handle.get());
78 EXPECT_CALL(mock_tpm_, FlushContextSync(new_handle, _))
scoped_key_handle.cc 50 void ScopedKeyHandle::reset(TPM_HANDLE new_handle) {
52 handle_ = new_handle;
  /external/tensorflow/tensorflow/compiler/xla/service/
channel_tracker.cc 38 const ChannelHandle new_handle = AllocateHandle(); local
44 opaque_to_channel_[new_handle.handle()] = channel;
46 return new_handle;
computation_tracker.cc 74 const ComputationHandle& new_handle = old_to_new[old_handle]; local
75 TF_ASSIGN_OR_RETURN(opaque_to_computation_[new_handle.handle()],
77 computation, new_handle, old_to_new));
129 const ComputationHandle new_handle = AllocateHandle(); local
130 (*old_to_new)[session_computation.computation_handle().handle()] = new_handle;
131 TF_ASSIGN_OR_RETURN(opaque_to_computation_[new_handle.handle()],
133 session_computation, new_handle, *old_to_new));
134 return new_handle;
  /external/drm_hwcomposer/
hwcutils.cpp 62 native_handle_t *new_handle = local
64 if (new_handle == NULL)
68 int *new_data = new_handle->data;
76 return new_handle;
  /external/python/cpython2/Lib/multiprocessing/
reduction.py 70 new_handle = duplicate(handle, process_handle)
71 conn.send(new_handle)
157 new_handle = recv_handle(conn)
159 return new_handle
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
reduction.py 70 new_handle = duplicate(handle, process_handle)
71 conn.send(new_handle)
157 new_handle = recv_handle(conn)
159 return new_handle
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
reduction.py 70 new_handle = duplicate(handle, process_handle)
71 conn.send(new_handle)
157 new_handle = recv_handle(conn)
159 return new_handle
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 70 new_handle = duplicate(handle, process_handle)
71 conn.send(new_handle)
157 new_handle = recv_handle(conn)
159 return new_handle
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 70 new_handle = duplicate(handle, process_handle)
71 conn.send(new_handle)
157 new_handle = recv_handle(conn)
159 return new_handle
  /external/libmojo/mojo/edk/test/
mojo_test_base.cc 238 MojoHandle new_handle; local
246 MojoDuplicateBufferHandle(h, &options, &new_handle));
247 return new_handle;
  /external/autotest/client/bin/net/
net_tc.py 45 # TODO (chavey) clean up those global here and new_handle()
50 def new_handle(): function
356 def __init__(self, handle=new_handle(), bands=3):
386 def __init__(self, handle=new_handle()):
398 def __init__(self, handle=new_handle()):
  /external/python/cpython3/Lib/multiprocessing/
spawn.py 99 new_handle = reduction.steal_handle(parent_pid, pipe_handle)
100 fd = msvcrt.open_osfhandle(new_handle, os.O_RDONLY)
  /external/tensorflow/tensorflow/python/eager/
pywrap_tensor.cc 121 TFE_TensorHandle* new_handle = local
131 return new_handle;
  /external/tensorflow/tensorflow/c/
c_api.cc 839 string new_handle; local
841 target_oper_names, &new_handle);
843 char* buf = new char[new_handle.size() + 1];
844 memcpy(buf, new_handle.c_str(), new_handle.size() + 1);
2632 string new_handle; local
    [all...]
  /external/libchrome/base/metrics/
field_trial.cc 224 SharedMemoryHandle new_handle; local
226 &new_handle); local
227 return SharedMemory::GetFdFromSharedMemoryHandle(new_handle);
    [all...]

Completed in 336 milliseconds