Home
last modified time | relevance | path

Searched refs:kNullProcessHandle (Results 1 – 18 of 18) sorted by relevance

/external/libchrome/base/process/
Dprocess_handle.h32 const ProcessHandle kNullProcessHandle = NULL; variable
37 const ProcessHandle kNullProcessHandle = ZX_HANDLE_INVALID;
43 const ProcessHandle kNullProcessHandle = 0;
Dprocess_posix.cc278 return process_ != kNullProcessHandle; in IsValid()
302 process_ = kNullProcessHandle; in Close()
Dprocess.h50 explicit Process(ProcessHandle handle = kNullProcessHandle);
/external/cronet/base/process/
Dprocess_stubs.cc17 DCHECK(handle == kNullProcessHandle || handle == kCurrentProcessHandle); in Process()
62 return process_ != kNullProcessHandle; in IsValid()
92 process_ = kNullProcessHandle; in Close()
Dprocess_handle.h35 const ProcessHandle kNullProcessHandle = NULL; variable
40 const ProcessHandle kNullProcessHandle = ZX_HANDLE_INVALID; variable
46 const ProcessHandle kNullProcessHandle = 0; variable
Dprocess_posix.cc280 return process_ != kNullProcessHandle; in IsValid()
301 return std::exchange(process_, kNullProcessHandle); in Release()
314 process_ = kNullProcessHandle; in Close()
Dprocess_handle_win.cc27 if (process == base::kNullProcessHandle) in GetProcId()
Dprocess.h67 explicit Process(ProcessHandle handle = kNullProcessHandle);
Dprocess_fuchsia.cc164 return kNullProcessHandle; in Release()
/external/libchrome/mojo/core/
Dscoped_process_handle.cc44 if (handle == base::kNullProcessHandle) in CloneFrom()
63 return handle_ != base::kNullProcessHandle; in is_valid()
Dscoped_process_handle.h56 base::ProcessHandle handle_ = base::kNullProcessHandle;
Dinvitation_unittest.cc803 base::kNullProcessHandle, &pipe0, 1, TransportType::kChannel, in TEST_F()
810 base::kNullProcessHandle, &pipe1, 1, TransportType::kChannel, in TEST_F()
820 base::kNullProcessHandle, &pipe0, 1, in TEST_F()
824 base::kNullProcessHandle, &pipe1, 1, in TEST_F()
Dchannel.h151 base::ProcessHandle from_process = base::kNullProcessHandle);
Dchannel.cc257 if (from_process == base::kNullProcessHandle) { in Deserialize()
Dnode_controller.cc1101 DCHECK(from_process != base::kNullProcessHandle); in OnRelayEventMessage()
Dcore.cc1291 base::ProcessHandle target_process = base::kNullProcessHandle; in SendInvitation()
/external/libchrome/mojo/public/cpp/system/
Dinvitation.cc180 SendInvitation(std::move(invitation.handle_), base::kNullProcessHandle, in SendIsolated()
195 SendInvitation(std::move(invitation.handle_), base::kNullProcessHandle, in SendIsolated()
/external/cronet/components/nacl/browser/
Dpnacl_host.cc82 : process_handle(base::kNullProcessHandle), in PendingTranslation()