Home
last modified time | relevance | path

Searched refs:pid (Results 1301 - 1325 of 2600) sorted by relevance

1...<<51525354555657585960>>...104

/third_party/ltp/testcases/kernel/syscalls/getsockopt/
H A Dgetsockopt02.c62 if (fork_id != cred.pid) in test_function()
64 cred.pid, getpid()); in test_function()
/third_party/libinput/tools/
H A Drazer-quirks-lister.py21 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 D7-1.c39 int pid; in main() local
52 if ((pid = fork()) == 0) { in main()
H A D8-1.c37 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 D5-1.c46 int pid; in main() local
60 if ((pid = fork()) != 0) { in main()
/third_party/ltp/testcases/open_posix_testsuite/functional/timers/clocks/
H A Dtwopsetclock.c34 int pid, delta; in main() local
41 if ((pid = fork()) == 0) { in main()
/third_party/python/Doc/includes/
H A Ddbpickle.py32 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 Dfor_loop_statement.cc24 ForLoopStatement::ForLoopStatement(ProgramID pid, in ForLoopStatement() argument
30 : Base(pid, src), in ForLoopStatement()
H A Dif_statement.cc24 IfStatement::IfStatement(ProgramID pid, in IfStatement() argument
29 : Base(pid, src), in IfStatement()
H A Dinterpolate_decoration.cc26 InterpolateDecoration::InterpolateDecoration(ProgramID pid, in InterpolateDecoration() argument
30 : Base(pid, src), type(ty), sampling(smpl) {} in InterpolateDecoration()
H A Dmatrix.cc24 Matrix::Matrix(ProgramID pid, in Matrix() argument
29 : Base(pid, src), type(subtype), rows(r), columns(c) { in Matrix()
H A Dmodule.h34 /// @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 Dpointer.cc24 Pointer::Pointer(ProgramID pid, in Pointer() argument
29 : Base(pid, src), type(subtype), storage_class(sc), access(ac) {} in Pointer()
H A Dstruct.cc27 Struct::Struct(ProgramID pid, in Struct() argument
32 : Base(pid, src, n), members(std::move(m)), decorations(std::move(decos)) { in Struct()
H A Dstruct_member.cc24 StructMember::StructMember(ProgramID pid, in StructMember() argument
29 : Base(pid, src), symbol(sym), type(ty), decorations(std::move(decos)) { in StructMember()
H A Dtexture.cc81 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 Dtest_wait3.py43 pid, status, rusage = os.wait3(os.WNOHANG)
44 self.assertEqual(0, pid)
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/
H A Dsys_event_service_ohos.cpp204 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 Dnative_leak_state.cpp105 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 Dparam_cmd.c457 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 Dutil.c280 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 Ddump_implement.h47 * @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 Drequest_manager.h41 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 Dpowermgr_service_mock_parcel_test.cpp84 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 Dpower_mock_proxy_test.cpp61 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()

Completed in 10 milliseconds

1...<<51525354555657585960>>...104