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

12 3 4 5

  /prebuilts/go/darwin-x86/src/os/
exec_windows.go 44 return &ProcessState{p.Pid, syscall.WaitStatus{ExitCode: ec}, &u}, nil
47 func terminateProcess(pid, exitcode int) error {
48 h, e := syscall.OpenProcess(syscall.PROCESS_TERMINATE, false, uint32(pid))
66 err := terminateProcess(p.Pid, 1)
89 func findProcess(pid int) (p *Process, err error) {
92 h, e := syscall.OpenProcess(da, false, uint32(pid))
96 return newProcess(pid, uintptr(h)), nil
  /prebuilts/go/darwin-x86/src/syscall/
creds_test.go 18 // (PID, UID, GID) in an ancillary message between two UNIX
54 ucred.Pid = int32(os.Getpid())
70 ucred.Pid = int32(os.Getpid())
ztypes_linux_arm64.go 154 Pid int32
191 Pid uint32
272 Pid int32
431 Pid uint32
ztypes_linux_mips.go 152 Pid int32
189 Pid uint32
268 Pid int32
427 Pid uint32
ztypes_linux_mipsle.go 152 Pid int32
189 Pid uint32
268 Pid int32
427 Pid uint32
ztypes_netbsd_386.go 84 Pid int32
306 Pid int32
ztypes_solaris_amd64.go 107 Pid int32
294 Pid int32
syscall_unix_test.go 53 Pid: int32(0),
110 flock.Pid = int32(syscall.Getppid())
113 if got.Type == flock.Type && got.Start == flock.Start && got.Len == flock.Len && got.Pid == flock.Pid && got.Whence == flock.Whence {
ztypes_linux_386.go 152 Pid int32
188 Pid uint32
267 Pid int32
426 Pid uint32
ztypes_linux_amd64.go 153 Pid int32
190 Pid uint32
271 Pid int32
430 Pid uint32
ztypes_linux_arm.go 155 Pid int32
192 Pid uint32
271 Pid int32
430 Pid uint32
  /prebuilts/go/linux-x86/src/os/
exec_windows.go 44 return &ProcessState{p.Pid, syscall.WaitStatus{ExitCode: ec}, &u}, nil
47 func terminateProcess(pid, exitcode int) error {
48 h, e := syscall.OpenProcess(syscall.PROCESS_TERMINATE, false, uint32(pid))
66 err := terminateProcess(p.Pid, 1)
89 func findProcess(pid int) (p *Process, err error) {
92 h, e := syscall.OpenProcess(da, false, uint32(pid))
96 return newProcess(pid, uintptr(h)), nil
  /prebuilts/go/linux-x86/src/syscall/
creds_test.go 18 // (PID, UID, GID) in an ancillary message between two UNIX
54 ucred.Pid = int32(os.Getpid())
70 ucred.Pid = int32(os.Getpid())
ztypes_linux_arm64.go 154 Pid int32
191 Pid uint32
272 Pid int32
431 Pid uint32
ztypes_linux_mips.go 152 Pid int32
189 Pid uint32
268 Pid int32
427 Pid uint32
ztypes_linux_mipsle.go 152 Pid int32
189 Pid uint32
268 Pid int32
427 Pid uint32
ztypes_netbsd_386.go 84 Pid int32
306 Pid int32
ztypes_solaris_amd64.go 107 Pid int32
294 Pid int32
  /system/core/libbacktrace/include/backtrace/
Backtrace.h 82 // If pid < 0 or equals the current pid, then the Backtrace object
84 // If pid < 0 or equals the current pid and tid >= 0, then the Backtrace
86 // If pid >= 0 and tid < 0, then the Backtrace object corresponds to a
91 static Backtrace* Create(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
98 static Backtrace* CreateOffline(pid_t pid, pid_t tid, BacktraceMap* map,
129 pid_t Pid() const { return pid_; }
155 Backtrace(pid_t pid, pid_t tid, BacktraceMap* map);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciUrb.h 100 UINT32 Pid : 2;
140 UINT32 Pid : 2;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
EhciSched.c 368 if (QtdHw->Pid != QTD_PID_SETUP) {
372 if ((QtdHw->TotalBytes != 0) && (QtdHw->Pid == QTD_PID_INPUT)) {
EhciUrb.h 96 UINT32 Pid : 2;
136 UINT32 Pid : 2;
  /prebuilts/go/darwin-x86/src/os/signal/
signal_windows_test.go 19 func sendCtrlBreak(t *testing.T, pid int) {
28 r, _, e := p.Call(syscall.CTRL_BREAK_EVENT, uintptr(pid))
98 sendCtrlBreak(t, cmd.Process.Pid)
  /prebuilts/go/linux-x86/src/os/signal/
signal_windows_test.go 19 func sendCtrlBreak(t *testing.T, pid int) {
28 r, _, e := p.Call(syscall.CTRL_BREAK_EVENT, uintptr(pid))
98 sendCtrlBreak(t, cmd.Process.Pid)
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
FakeUid.java 68 public SparseArray<? extends Pid> getPidStats() {

Completed in 2621 milliseconds

12 3 4 5