/external/autotest/client/site_tests/platform_DaemonsRespawn/ |
D | test_respawn.sh | 7 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/ |
D | ninfod.sh.in | 4 PID=/var/run/ninfod.pid 20 kill `cat $PID` 26 kill `cat $PID`
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | p2p-action-udhcp.sh | 14 PID=`cat $PF` 15 if [ $PID -gt 0 ]; then 16 if ps $PID | grep -q $NAME; then 17 kill $PID
|
D | p2p-action.sh | 14 PID=`cat $PF` 15 if [ $PID -gt 0 ]; then 16 if ps $PID | grep -q $NAME; then 17 kill $PID
|
/external/elfutils/tests/ |
D | run-stack-d-test.sh | 78 PID 13654 - core 88 PID 13654 - core 99 PID 13654 - core 108 PID 13654 - core
|
D | run-stack-demangled-test.sh | 47 PID 13654 - core 57 PID 13654 - core 69 PID 13654 - core 83 PID 13654 - core
|
D | run-stack-i-test.sh | 45 PID 13654 - core 59 PID 13654 - core
|
/external/clang/lib/AST/ |
D | DeclPrinter.cpp | 1164 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 …]
|
D | DeclObjC.cpp | 220 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/ |
D | LockFileManager.cpp | 57 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/ |
D | android_gdb_app | 48 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/ |
D | TransZeroOutPropsInDealloc.cpp | 116 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/ |
D | strace-log-merge | 8 Finds all STRACE_LOG.PID files, adds PID prefix to every line,
|
/external/e2fsprogs/tests/f_mmp/ |
D | script | 24 PID=$(ps -o pid,command | grep -v awk | 26 [ "x$PID" != "x" ] && kill -9 $PID
|
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
D | dynamic-dnsmasq.pl | 224 open(PID,"<$dnsmasqpidfile") || die "Could not open PID file \"$dnsmasqpidfile\": $!\n"; 225 my $pid = <PID>; 226 close(PID);
|
/external/clang/test/SemaObjCXX/ |
D | pointer-to-objc-pointer-conv.mm | 20 id *PID; 21 [b foo:PID];
|
/external/clang/lib/CodeGen/ |
D | CGObjC.cpp | 798 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/ |
D | LockFileManager.h | 66 static bool processStillExecuting(StringRef Hostname, int PID);
|
/external/valgrind/memcheck/tests/ |
D | dw4.stderr.exp-solaris | 28 Address 0x........ is in a rw- mapped file valgrind-dw4-test.PID segment
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 242 pid_t PID = 0; 243 int Err = posix_spawn(&PID, Program.str().c_str(), FileActions, 253 PI.Pid = PID;
|
/external/clang/test/SemaObjC/ |
D | attr-deprecated.m | 236 id PID = 0; 238 …return [PID cString]; // expected-warning {{'cString' is deprecated: first deprecated in OS X 10.4…
|
/external/ltrace/sysdeps/linux-gnu/ |
D | proc.c | 58 #define PROC_PID_FILE(VAR, FORMAT, PID) \ argument 60 sprintf(VAR, FORMAT, PID)
|
/external/valgrind/coregrind/m_gdbserver/ |
D | README_DEVELOPERS | 128 (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/ |
D | CursorVisitor.h | 225 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
|
/external/dbus/cmake/ |
D | CMakeLists.txt | 316 #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} ")
|