Home
last modified time | relevance | path

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

1234

/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/iputils/ninfod/
Dninfod.sh.in4 PID=/var/run/ninfod.pid
20 kill `cat $PID`
26 kill `cat $PID`
/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.cpp1164 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { in VisitObjCProtocolDecl() argument
1165 if (!PID->isThisDeclarationADefinition()) { in VisitObjCProtocolDecl()
1166 Out << "@protocol " << *PID << ";\n"; in VisitObjCProtocolDecl()
1170 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols(); in VisitObjCProtocolDecl()
1172 Out << "@protocol " << *PID; in VisitObjCProtocolDecl()
1178 Out << "@protocol " << *PID << '\n'; in VisitObjCProtocolDecl()
1179 VisitDeclContext(PID, false); in VisitObjCProtocolDecl()
1183 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl() argument
1184 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n"; in VisitObjCCategoryImplDecl()
1186 VisitDeclContext(PID, false); in VisitObjCCategoryImplDecl()
[all …]
DDeclObjC.cpp220 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this); in FindPropertyDeclaration() local
221 for (const auto *I : PID->protocols()) in FindPropertyDeclaration()
2002 for (auto *PID : property_impls()) in FindPropertyImplIvarDecl() local
2003 if (PID->getPropertyIvarDecl() && in FindPropertyImplIvarDecl()
2004 PID->getPropertyIvarDecl()->getIdentifier() == ivarId) in FindPropertyImplIvarDecl()
2005 return PID; in FindPropertyImplIvarDecl()
2015 for (auto *PID : property_impls()) in FindPropertyImplDecl() local
2016 if (PID->getPropertyDecl()->getIdentifier() == Id) in FindPropertyImplDecl()
2017 return PID; in FindPropertyImplDecl()
/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/skia/platform_tools/android/bin/
Dandroid_gdb_app48 PID=$($ADB shell ps | grep com.skia.sample_app | awk '{print $2}')
49 echo "Attaching to pid: $PID"
50 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID &
/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/strace/
Dstrace-log-merge8 Finds all STRACE_LOG.PID files, adds PID prefix to every line,
/external/e2fsprogs/tests/f_mmp/
Dscript24 PID=$(ps -o pid,command | grep -v awk |
26 [ "x$PID" != "x" ] && kill -9 $PID
/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/clang/lib/CodeGen/
DCGObjC.cpp798 const ObjCPropertyImplDecl *PID) { in GenerateObjCGetter() argument
800 CodeGenFunction(CGM).GenerateObjCAtomicGetterCopyHelperFunction(PID); in GenerateObjCGetter()
801 const ObjCPropertyDecl *PD = PID->getPropertyDecl(); in GenerateObjCGetter()
806 generateObjCGetterBody(IMP, PID, OMD, AtomicHelperFn); in GenerateObjCGetter()
1116 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { in hasTrivialSetExpr() argument
1117 Expr *setter = PID->getSetterCXXAssignment(); in hasTrivialSetExpr()
1328 const ObjCPropertyImplDecl *PID) { in GenerateObjCSetter() argument
1330 CodeGenFunction(CGM).GenerateObjCAtomicSetterCopyHelperFunction(PID); in GenerateObjCSetter()
1331 const ObjCPropertyDecl *PD = PID->getPropertyDecl(); in GenerateObjCSetter()
1336 generateObjCSetterBody(IMP, PID, AtomicHelperFn); in GenerateObjCSetter()
[all …]
/external/llvm/include/llvm/Support/
DLockFileManager.h66 static bool processStillExecuting(StringRef Hostname, int PID);
/external/valgrind/memcheck/tests/
Ddw4.stderr.exp-solaris28 Address 0x........ is in a rw- mapped file valgrind-dw4-test.PID segment
/external/llvm/lib/Support/Unix/
DProgram.inc242 pid_t PID = 0;
243 int Err = posix_spawn(&PID, Program.str().c_str(), FileActions,
253 PI.Pid = PID;
/external/clang/test/SemaObjC/
Dattr-deprecated.m236 id PID = 0;
238 …return [PID cString]; // expected-warning {{'cString' is deprecated: first deprecated in OS X 10.4…
/external/ltrace/sysdeps/linux-gnu/
Dproc.c58 #define PROC_PID_FILE(VAR, FORMAT, PID) \ argument
60 sprintf(VAR, FORMAT, PID)
/external/valgrind/coregrind/m_gdbserver/
DREADME_DEVELOPERS128 (by default) the name /tmp/vgdb-pipe-from-vgdb-to-PID-by-USER-on-HOST
129 where PID, USER, and HOST will be replaced by the actual pid, the user id,
132 /tmp/vgdb-pipe-to-vgdb-from-PID-by-USER-on-HOST
137 commands and writes them on FIFO /tmp/vgdb-pipe-from-vgdb-to-PID-by-USER-on-HOST.
138 vgdb reads replies on FIFO /tmp/vgdb-pipe-to-vgdb-from-PID-by-USER-on-HOST
/external/clang/tools/libclang/
DCursorVisitor.h225 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
/external/dbus/cmake/
DCMakeLists.txt316 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for syste…
403 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for syste…
571 message(" System bus PID file: ${DBUS_SYSTEM_PID_FILE} ")

1234