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

  /external/libchrome/mojo/core/
platform_handle_in_transit.cc 115 ScopedProcessHandle target_process) {
116 DCHECK(target_process.is_valid());
122 target_process.get());
126 owning_process_ = std::move(target_process);
platform_handle_in_transit.h 59 // Transfers ownership of this (local) handle to |target_process|.
60 bool TransferToProcess(ScopedProcessHandle target_process);
node_controller.h 81 base::ProcessHandle target_process,
160 ScopedProcessHandle target_process,
node_controller.cc 176 base::ProcessHandle target_process,
195 ScopedProcessHandle::CloneFrom(target_process);
322 ScopedProcessHandle target_process,
333 new BrokerHost(target_process.get(), std::move(connection_params),
370 channel->SetRemoteProcessHandle(std::move(target_process));
    [all...]
core.cc 192 base::ProcessHandle target_process,
198 target_process, std::move(connection_params), attached_ports,
    [all...]
core.h 76 // Sends a broker client invitation to |target_process| over the connection
86 base::ProcessHandle target_process,
  /external/libchrome/mojo/public/cpp/system/
invitation.cc 19 void ProcessHandleToMojoProcessHandle(base::ProcessHandle target_process,
24 static_cast<uint64_t>(reinterpret_cast<uintptr_t>(target_process));
26 handle->value = static_cast<uint64_t>(target_process);
57 base::ProcessHandle target_process,
64 ProcessHandleToMojoProcessHandle(target_process, &process_handle);
153 base::ProcessHandle target_process,
156 SendInvitation(std::move(invitation.handle_), target_process, local
164 base::ProcessHandle target_process,
167 SendInvitation(std::move(invitation.handle_), target_process, local
invitation.h 90 base::ProcessHandle target_process,
98 base::ProcessHandle target_process,
  /external/python/cpython3/Lib/multiprocessing/
reduction.py 71 def duplicate(handle, target_process=None, inheritable=False):
72 '''Duplicate a handle. (target_process is a handle not a pid!)'''
73 if target_process is None:
74 target_process = _winapi.GetCurrentProcess()
76 _winapi.GetCurrentProcess(), handle, target_process,
  /external/python/cpython2/Lib/multiprocessing/
forking.py 230 def duplicate(handle, target_process=None, inheritable=False):
231 if target_process is None:
232 target_process = _subprocess.GetCurrentProcess()
234 _subprocess.GetCurrentProcess(), handle, target_process,

Completed in 626 milliseconds