Home
last modified time | relevance | path

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

123456

/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/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/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/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/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/openssh/
Dopensshd.init.in47 PID=`${CAT} ${PIDFILE}`
49 if [ ${PID:=0} -gt 1 -a ! "X$PID" = "X " ]; then
50 ${KILL} ${PID}
/external/iputils/ninfod/
Dninfod.sh.in4 PID=/var/run/ninfod.pid
20 kill `cat $PID`
26 kill `cat $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/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/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
Drun-stack-i-test.sh45 PID 13654 - core
59 PID 13654 - core
/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/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/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/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]};
Drun_cpuctl_stress_test.sh173 PID[$TASK_NUM]=$!;
251 PID[$TASK_NUM]=$!;
318 PID[$TASK_NUM]=$!;
364 wait ${PID[$i]};
/external/strace/
Dstrace-log-merge8 Finds all STRACE_LOG.PID files, adds PID prefix to every line,
/external/dnsmasq/contrib/dynamic-dnsmasq/
Ddynamic-dnsmasq.pl224 open(PID,"<$dnsmasqpidfile") || die "Could not open PID file \"$dnsmasqpidfile\": $!\n";
225 my $pid = <PID>;
226 close(PID);
/external/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm20 id *PID;
21 [b foo:PID];
/external/libusb/examples/
Dxusb.c144 static uint16_t VID, PID; variable
985 PID = 0; in main()
1026 if (!VID && !PID) { in main()
1028 PID = 0x0004; in main()
1033 if (!VID && !PID) { in main()
1035 PID = 0x6025; in main()
1042 PID = 0x0268; in main()
1048 PID = 0x0008; in main()
1054 PID = 0x0289; in main()
1072 PID = (uint16_t)tmp_pid; in main()
[all …]
/external/e2fsprogs/tests/f_mmp/
Dscript25 PID=$(ps -o pid,command | grep -v grep |
27 [ "x$PID" != "x" ] && kill -9 $PID

123456