HomeSort by relevance Sort by last modified time
    Searched refs:pid_t (Results 26 - 50 of 1914) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
termios.cpp 38 pid_t tcgetpgrp(int fd) {
39 pid_t pid;
44 int tcsetpgrp(int fd, pid_t pid) {
killpg.cpp 32 int killpg(pid_t pgrp, int sig) {
pthread_gettid_np.cpp 33 pid_t pthread_gettid_np(pthread_t t) {
  /external/google-breakpad/src/client/linux/crash_generation/
client_info.h 39 ClientInfo(pid_t pid, CrashGenerationServer* crash_server)
44 pid_t pid() const { return pid_; }
48 pid_t pid_;
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.h 46 explicit LinuxPtraceDumper(pid_t pid);
53 virtual bool BuildProcPath(char* path, pid_t pid, const char* node) const;
59 virtual bool CopyFromProcess(void* dest, pid_t child, const void* src,
linux_core_dumper.h 50 LinuxCoreDumper(pid_t pid, const char* core_path, const char* procfs_path);
65 virtual bool BuildProcPath(char* path, pid_t pid, const char* node) const;
73 virtual bool CopyFromProcess(void* dest, pid_t child, const void* src,
  /external/ltp/include/
tst_pid.h 26 pid_t tst_get_unused_pid_(void (*cleanup_fn)(void));
35 static inline pid_t tst_get_unused_pid(void)
45 static inline pid_t tst_get_unused_pid(void (*cleanup_fn)(void))
  /bionic/libc/include/sys/
wait.h 41 pid_t wait(int* __status);
42 pid_t waitpid(pid_t __pid, int* __status, int __options);
44 pid_t wait4(pid_t __pid, int* __status, int __options, struct rusage* __rusage) __INTRODUCED_IN(18);
  /system/core/libmemunreachable/
ThreadCapture.h 27 pid_t tid;
32 using TidList = allocator::vector<pid_t>;
39 ThreadCapture(pid_t pid, Allocator<ThreadCapture> allocator);
45 bool ReleaseThread(pid_t tid);
47 void InjectTestFunc(std::function<void(pid_t)>&& f);
  /bionic/tests/headers/posix/
sched_h.c 36 TYPE(pid_t);
58 FUNCTION(sched_getparam, int (*f)(pid_t, struct sched_param*));
59 FUNCTION(sched_getscheduler, int (*f)(pid_t));
60 FUNCTION(sched_rr_get_interval, int (*f)(pid_t, struct timespec*));
61 FUNCTION(sched_setparam, int (*f)(pid_t, const struct sched_param*));
62 FUNCTION(sched_setscheduler, int (*f)(pid_t, int, const struct sched_param*));
  /system/core/debuggerd/include/debuggerd/
client.h 29 bool debuggerd_trigger_dump(pid_t pid, enum DebuggerdDumpType dump_type, unsigned int timeout_ms,
32 int dump_backtrace_to_file(pid_t tid, enum DebuggerdDumpType dump_type, int output_fd);
33 int dump_backtrace_to_file_timeout(pid_t tid, enum DebuggerdDumpType dump_type, int timeout_secs,
  /system/core/logd/
LogWhiteBlackList.h 33 const pid_t mPid;
34 int cmp(uid_t uid, pid_t pid) const;
38 static const pid_t pid_all = (pid_t)-1;
40 Prune(uid_t uid, pid_t pid);
45 pid_t getPid() const {
  /system/extras/simpleperf/
InplaceSamplerClient.h 30 static std::unique_ptr<InplaceSamplerClient> Create(const perf_event_attr& attr, pid_t pid,
31 const std::set<pid_t>& tids);
41 InplaceSamplerClient(const perf_event_attr& attr, pid_t pid, const std::set<pid_t>& tids);
47 const pid_t pid_;
48 const std::set<pid_t> tids_;
  /system/hwservicemanager/
AccessControl.h 13 Context getContext(pid_t sourcePid);
15 bool canAdd(const std::string& fqName, const Context &context, pid_t pid);
16 bool canGet(const std::string& fqName, pid_t pid);
17 bool canList(pid_t pid);
21 bool checkPermission(const Context &context, pid_t sourceAuditPid, const char *targetContext, const char *perm, const char *interface);
22 bool checkPermission(const Context &context, pid_t sourcePid, const char *perm, const char *interface);
  /bionic/libc/include/android/
legacy_sys_wait_inlines.h 42 static __inline pid_t wait4(pid_t pid, int* status, int options, struct rusage* rusage) {
43 return __BIONIC_CAST(static_cast, pid_t, syscall(__NR_wait4, pid, status, options, rusage));
  /frameworks/native/cmds/lshal/libprocpartition/include/procpartition/
procpartition.h 39 std::string getExe(pid_t pid);
41 std::string getCmdline(pid_t pid);
43 Partition getPartition(pid_t pid);
  /packages/services/Car/procfs-inspector/server/
process.h 29 pid_t getPid() { return mPid; }
33 ProcessInfo(pid_t pid = -1, uid_t uid = -1) : mPid(pid), mUid(uid) {}
39 pid_t mPid;
  /external/google-breakpad/src/common/linux/tests/
crash_generator.h 73 int crash_signal, pid_t* child_pid);
77 pid_t GetThreadId(unsigned index) const;
83 bool CopyProcFiles(pid_t pid, const char* path) const;
102 pid_t* GetThreadIdPointer(unsigned index);
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/sched_h/
13-1-buildonly.c 12 * int sched_getparam(pid_t, struct sched_param *);
19 typedef int (*sched_getparam_test) (pid_t, struct sched_param *);
14-1-buildonly.c 12 * int sched_getscheduler(pid_t);
19 typedef int (*sched_getscheduler_test) (pid_t);
16-1-buildonly.c 12 * int sched_setparam(pid_t, const struct sched_param *);
19 typedef int (*sched_setparam_test) (pid_t, const struct sched_param *);
17-1-buildonly.c 12 * int sched_setscheduler(pid_t, int, const struct sched_param *);
19 typedef int (*sched_setscheduler_test) (pid_t, int, const struct sched_param *);
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
24-1-buildonly.c 3 int kill(pid_t, int);
10 typedef int (*kill_test) (pid_t, int);
25-1-buildonly.c 3 int killpg(pid_t, int);
10 typedef int (*killpg_test) (pid_t, int);
43-1-buildonly.c 3 int sigqueue(pid_t, int, const union sigval);
10 typedef int (*sigqueue_test) (pid_t, int, const union sigval);

Completed in 618 milliseconds

12 3 4 5 6 7 8 91011>>