/third_party/ltp/testcases/kernel/syscalls/getsockopt/ |
H A D | getsockopt02.c | 62 if (fork_id != cred.pid) in test_function() 64 cred.pid, getpid()); in test_function()
|
/third_party/libinput/tools/ |
H A D | razer-quirks-lister.py | 21 KeyboardDescriptor = namedtuple("KeyboardDescriptor", ["vid", "pid", "name"]) 47 k = KeyboardDescriptor(name=clsname, vid=kbd.USB_VID, pid=kbd.USB_PID) 67 for kbd in sorted(keyboards, key=lambda k: k.vid << 16 | k.pid): 75 f"MatchProduct=0x{kbd.pid:04X}",
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/ |
H A D | 7-1.c | 39 int pid; in main() local 52 if ((pid = fork()) == 0) { in main()
|
H A D | 8-1.c | 37 int pid; in main() local 50 if ((pid = fork()) == 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_receive/ |
H A D | 5-1.c | 46 int pid; in main() local 60 if ((pid = fork()) != 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/functional/timers/clocks/ |
H A D | twopsetclock.c | 34 int pid, delta; in main() local 41 if ((pid = fork()) == 0) { in main()
|
/third_party/python/Doc/includes/ |
H A D | dbpickle.py | 32 def persistent_load(self, pid): 34 # Here, pid is the tuple returned by DBPickler. 36 type_tag, key_id = pid
|
/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | for_loop_statement.cc | 24 ForLoopStatement::ForLoopStatement(ProgramID pid, in ForLoopStatement() argument 30 : Base(pid, src), in ForLoopStatement()
|
H A D | if_statement.cc | 24 IfStatement::IfStatement(ProgramID pid, in IfStatement() argument 29 : Base(pid, src), in IfStatement()
|
H A D | interpolate_decoration.cc | 26 InterpolateDecoration::InterpolateDecoration(ProgramID pid, in InterpolateDecoration() argument 30 : Base(pid, src), type(ty), sampling(smpl) {} in InterpolateDecoration()
|
H A D | matrix.cc | 24 Matrix::Matrix(ProgramID pid, in Matrix() argument 29 : Base(pid, src), type(subtype), rows(r), columns(c) { in Matrix()
|
H A D | module.h | 34 /// @param pid the identifier of the program that owns this node 36 Module(ProgramID pid, const Source& src); 39 /// @param pid the identifier of the program that owns this node 43 Module(ProgramID pid,
|
H A D | pointer.cc | 24 Pointer::Pointer(ProgramID pid, in Pointer() argument 29 : Base(pid, src), type(subtype), storage_class(sc), access(ac) {} in Pointer()
|
H A D | struct.cc | 27 Struct::Struct(ProgramID pid, in Struct() argument 32 : Base(pid, src, n), members(std::move(m)), decorations(std::move(decos)) { in Struct()
|
H A D | struct_member.cc | 24 StructMember::StructMember(ProgramID pid, in StructMember() argument 29 : Base(pid, src), symbol(sym), type(ty), decorations(std::move(decos)) { in StructMember()
|
H A D | texture.cc | 81 Texture::Texture(ProgramID pid, const Source& src, TextureDimension d) in Texture() argument 82 : Base(pid, src), dim(d) {} in Texture()
|
/third_party/python/Lib/test/ |
H A D | test_wait3.py | 43 pid, status, rusage = os.wait3(os.WNOHANG) 44 self.assertEqual(0, pid)
|
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/ |
H A D | sys_event_service_ohos.cpp | 204 HIVIEW_LOGD("pid %{public}d rules match %{public}s.", listener->second.pid, isMatched ? "success" : "fail"); in OnSysEvent() 238 HIVIEW_LOGE("pid %{public}d has died and remove listener.", listener->second.pid); in OnRemoteDied() 296 HIVIEW_LOGD("uid %{public}d pid %{public}d listener has been added and update rules.", in AddListener() 297 listenerInfo.uid, listenerInfo.pid); in AddListener() 305 HIVIEW_LOGD("uid %{public}d pid %{public}d listener is added successfully, total is %{public}zu.", in AddListener() 306 listenerInfo.uid, listenerInfo.pid, registeredListeners_.size()); in AddListener() 330 int32_t pid = IPCSkeleton::GetCallingPid(); in RemoveListener() local 339 HIVIEW_LOGE("uid %{public}d pid in RemoveListener() [all...] |
/base/hiviewdfx/hiview/plugins/reliability/leak_detectors/native_leak/ |
H A D | native_leak_state.cpp | 105 HIVIEW_LOGI("NativeLeakSampleState::StateProcess pid: %{public}d", userMonitorInfo->GetPid()); in StateProcess() 122 HIVIEW_LOGI("NativeLeakSampleState::CollectUserBaseInfo pid: %{public}d", userMonitorInfo->GetPid()); in CollectUserBaseInfo() 149 HIVIEW_LOGI("process: %{public}s, pid: %{public}d, pss:%{public}u KB", in CollectUserBaseInfo() 163 HIVIEW_LOGI("NativeLeakSampleState::RemoveData pid: %{public}d", userMonitorInfo->GetPid()); in RemoveData() 170 HIVIEW_LOGI("NativeLeakJudgeState::StateProcess pid: %{public}d", monitorInfo->GetPid()); in StateProcess() 173 HIVIEW_LOGE("pid: %{public}d does memory leak", userMonitorInfo->GetPid()); in StateProcess() 177 HIVIEW_LOGI("pid: %{public}d dont memory leak", userMonitorInfo->GetPid()); in StateProcess() 184 auto pid = userMonitorInfo->GetPid(); in IsMemoryLeak() local 190 HIVIEW_LOGE("pid: %{public}d memorySize:%{public}u", pid, memorySiz in IsMemoryLeak() [all...] |
/base/startup/init/services/begetctl/ |
H A D | param_cmd.c | 457 pid_t pid = fork(); in ForkChild() local 458 if (pid == 0) { in ForkChild() 462 return pid; in ForkChild() 485 pid_t pid = 0; in BShellParamCmdShell() local 489 pid = clone(ExecFunc, childStack + STACK_SIZE, CLONE_NEWPID | CLONE_NEWNS | SIGCHLD, (void *)&args); in BShellParamCmdShell() 492 pid = ForkChild(ExecFunc, (void *)&args); in BShellParamCmdShell() 494 if (pid > 0) { in BShellParamCmdShell() 495 g_shellPid = pid; in BShellParamCmdShell()
|
/third_party/curl/tests/server/ |
H A D | util.c | 280 curl_off_t pid; in our_getpid() local 282 pid = (curl_off_t)getpid(); in our_getpid() 284 /* store pid + 65536 to avoid conflict with Cygwin/msys PIDs, see also: in our_getpid() 290 pid += 65536; in our_getpid() 292 return pid; in our_getpid() 298 curl_off_t pid; in write_pidfile() local 300 pid = our_getpid(); in write_pidfile() 303 logmsg("Couldn't write pid file: %s %s", filename, strerror(errno)); in write_pidfile() 306 fprintf(pidfile, "%" CURL_FORMAT_CURL_OFF_T "\n", pid); in write_pidfile() 308 logmsg("Wrote pid in write_pidfile() [all...] |
/base/hiviewdfx/hidumper/frameworks/native/include/manager/ |
H A D | dump_implement.h | 47 * @param pid, process id of client. 50 bool IsHidumperClientProcess(int pid); 75 void SendPidErrorMessage(int pid); 90 bool CheckAppDebugVersion(int pid); 99 const std::string unrecognizedError_ = "hidumper: option pid missed. ";
|
/base/location/services/location_locator/locator/include/ |
H A D | request_manager.h | 41 void SetPid(pid_t pid); 62 void HandlePowerSuspendChanged(int32_t pid, int32_t uid, int32_t flag); 91 void ReportDataToResSched(std::string state, const pid_t pid, const pid_t uid);
|
/base/powermgr/power_manager/test/unittest/src/servicetest/mock/ |
H A D | powermgr_service_mock_parcel_test.cpp | 84 pid_t pid = 0; in HWTEST_F() local 92 EXPECT_FALSE(g_powerMgrServiceProxy->ProxyRunningLock(true, pid, uid)); in HWTEST_F() 93 EXPECT_FALSE(g_powerMgrServiceProxy->ProxyRunningLocks(true, {std::make_pair(pid, uid)})); in HWTEST_F()
|
/base/powermgr/power_manager/test/unittest/src/mock/ |
H A D | power_mock_proxy_test.cpp | 61 pid_t pid = 0; in HWTEST_F() local 72 EXPECT_FALSE(sptrProxy->ProxyRunningLock(true, pid, uid)); in HWTEST_F() 73 EXPECT_FALSE(sptrProxy->ProxyRunningLocks(true, {std::make_pair(pid, uid)})); in HWTEST_F()
|