Home
last modified time | relevance | path

Searched refs:PID (Results 1 – 25 of 416) sorted by relevance

12345678910>>...17

/external/autotest/client/site_tests/platform_DaemonsRespawn/
Dtest_respawn.sh7 PID=0
20 PID=0
47 PID=$upstart_pid
60 if [ $PID -le 0 ] ; then
65 OLD_PID=$PID
66 kill -KILL $PID
72 if [ $PID -gt 0 ] ; then
77 if [ $PID -le 0 ] ; then
81 if [ $PID -eq $OLD_PID ] ; then
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/include/
Dcpuhotplug_testsuite.sh64 PID=$1
65 ps --pid ${PID} --no-header | grep ${PID}
76 PID=$1
77 disown $PID
78 kill -9 $PID > /dev/null 2>&1
/external/autotest/client/common_lib/cros/
Dpower_cycle_usb_util_unittest.py15 PID = '0001' variable in PowerCycleUsbUtilTest
43 self.LSUSB_DEVICE_OUTPUT, self.VID, self.PID)
46 self.LSUSB_DEVICE_OUTPUT_NONE, self.VID, self.PID)
49 self.LSUSB_DEVICE_OUTPUT_MULTI, self.VID, self.PID)
/external/ltp/testcases/kernel/controllers/memctl/
Drun_memctl_test.sh143 PID[$i]=$!;
170 echo ${PID[$i]} >>/dev/memctl/group_2/tasks;
205 kill -SIGUSR1 ${PID[$i]};
214 kill -SIGUSR2 ${PID[$i]};
227 kill -SIGUSR1 ${PID[$i]};
250 wait ${PID[$i]};
/external/ltp/testcases/network/rpc/basic_tests/rpcinfo/
Drpcinfo0167 PID=0
134 PID=$!
135 kill -9 $PID > /dev/null 2>&1
136 PID=0
255 if [ "$PID" != 0 ]; then
256 kill -9 $PID
/external/ltp/testcases/network/rpc/basic_tests/rup/
Drup0156 PID=0
81 PID=`rsh -n $RHOST ps -ewf | grep rstatd | awk '{print $2 }'`
139 if [ "$PID" != 0 ]; then
141 rsh -n $RHOST kill -15 $PID
/external/openssh/
Dopensshd.init.in47 PID=`${CAT} ${PIDFILE}`
49 if [ ${PID:=0} -gt 1 -a ! "X$PID" = "X " ]; then
50 ${KILL} ${PID}
/external/ltp/testcases/network/rpc/basic_tests/rusers/
Drusers0157 PID=0
82 PID=`rsh -n $RHOST ps -ewf | grep rusersd | awk '{print $2 }'`
133 if [ "$PID" != 0 ]; then
135 rsh -n $RHOST kill -9 $PID
/external/iputils/ninfod/
Dninfod.sh.in4 PID=/var/run/ninfod.pid
20 kill `cat $PID`
26 kill `cat $PID`
/external/elfutils/tests/
Drun-stack-d-test.sh78 PID 13654 - core
88 PID 13654 - core
99 PID 13654 - core
108 PID 13654 - core
Drun-stack-demangled-test.sh47 PID 13654 - core
57 PID 13654 - core
69 PID 13654 - core
83 PID 13654 - core
/external/wpa_supplicant_8/wpa_supplicant/examples/
Dp2p-action-udhcp.sh14 PID=`cat $PF`
15 if [ $PID -gt 0 ]; then
16 if ps $PID | grep -q $NAME; then
17 kill $PID
Dp2p-action.sh14 PID=`cat $PF`
15 if [ $PID -gt 0 ]; then
16 if ps $PID | grep -q $NAME; then
17 kill $PID
/external/ltp/doc/
Dnamespaces-helper-tools.txt14 ** PID of the daemonized child process is printed on the stdout
20 ** enters the namespace(s) of a process specified by a PID
23 ** moves a network interface to the namespace of a process specified by a PID
37 # Creates a new network and ipc namespace and stores the PID of the daemonized
43 # Executes command 'ip a' inside the namespace specified by PID in myns variable
48 # Moves interface veth1 into the namespace specified by PID in myns variable
/external/skia/platform_tools/android/bin/
Dandroid_gdb_app44 PID=$($ADB shell ps | grep ${activityShort} | awk '{print $2}')
45 echo "Attaching to pid: $PID"
46 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID &
/external/clang/lib/AST/
DDeclPrinter.cpp1182 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { in VisitObjCProtocolDecl() argument
1183 if (!PID->isThisDeclarationADefinition()) { in VisitObjCProtocolDecl()
1184 Out << "@protocol " << *PID << ";\n"; in VisitObjCProtocolDecl()
1188 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols(); in VisitObjCProtocolDecl()
1190 Out << "@protocol " << *PID; in VisitObjCProtocolDecl()
1196 Out << "@protocol " << *PID << '\n'; in VisitObjCProtocolDecl()
1197 VisitDeclContext(PID, false); in VisitObjCProtocolDecl()
1201 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl() argument
1202 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n"; in VisitObjCCategoryImplDecl()
1204 VisitDeclContext(PID, false); in VisitObjCCategoryImplDecl()
[all …]
/external/llvm/lib/Support/
DLockFileManager.cpp57 int PID; in readLockFile() local
58 if (!PIDStr.getAsInteger(10, PID)) { in readLockFile()
59 auto Owner = std::make_pair(std::string(Hostname), PID); in readLockFile()
100 bool LockFileManager::processStillExecuting(StringRef HostID, int PID) { in processStillExecuting() argument
107 if (StoredHostID == HostID && getsid(PID) == -1 && errno == ESRCH) in processStillExecuting()
/external/libmtp/logs/
Dmtp-detect-blu-studio-hd.txt7 Device 0 (VID=0e8d and PID=2008) is UNKNOWN.
8 Please report this VID/PID and the device model to the libmtp development team
114 ** [bugs:#1383] Device 0 (VID=0e8d and PID=2008) is UNKNOWN.**
127 Device 0 (VID=0e8d and PID=2008) is UNKNOWN.
128 Please report this VID/PID and the device model to the libmtp development team
Dmtp-detect-yota-phone.txt16 Device 0 (VID=2916 and PID=9139) is UNKNOWN in libmtp v1.1.11.
17 Please report this VID/PID and the device model to the libmtp development team.
25 Device 0 (VID=2916 and PID=9139) is UNKNOWN in libmtp v1.1.11.
26 Please report this VID/PID and the device model to the libmtp development team
Dmtp-detect-archos-5.txt1 Device 0 (VID=0e79 and PID=1333) is UNKNOWN.
2 Please report this VID/PID and the device model to the libmtp development team
Dmtp-detect-gigaware-gx400.txt6 Device 0 (VID=0aa6 and PID=9702) is UNKNOWN.
7 Please report this VID/PID and the device model to the libmtp development team
/external/openssh/regress/
Dreconfigure.sh28 PID=`$SUDO cat $PIDFILE`
30 $SUDO kill -HUP $PID
/external/strace/
Dstrace-log-merge8 Finds all STRACE_LOG.PID files, adds PID prefix to every line,
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp116 for (auto *PID : IMD->property_impls()) { in TraverseObjCMethodDecl() local
117 if (PID->getPropertyImplementation() == in TraverseObjCMethodDecl()
119 ObjCPropertyDecl *PD = PID->getPropertyDecl(); in TraverseObjCMethodDecl()
128 SynthesizedProperties[PD] = PID; in TraverseObjCMethodDecl()
/external/ltp/testcases/kernel/controllers/cpuctl/
Drun_cpuctl_test.sh120 PID[$i]=$!;
182 PID[$TASK_NUM]=$!;
242 PID[$TASK_NUM]=$!;
291 wait ${PID[$i]};

12345678910>>...17