/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/llvm/lib/Support/ |
D | LockFileManager.cpp | 48 int PID; in readLockFile() local 49 if (!PIDStr.getAsInteger(10, PID)) { in readLockFile() 50 auto Owner = std::make_pair(std::string(Hostname), PID); in readLockFile() 60 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) { in processStillExecuting() argument 67 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH) in processStillExecuting()
|
/external/clang/lib/AST/ |
D | DeclPrinter.cpp | 1023 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { in VisitObjCProtocolDecl() argument 1024 if (!PID->isThisDeclarationADefinition()) { in VisitObjCProtocolDecl() 1025 Out << "@protocol " << *PID << ";\n"; in VisitObjCProtocolDecl() 1029 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols(); in VisitObjCProtocolDecl() 1031 Out << "@protocol " << *PID; in VisitObjCProtocolDecl() 1037 Out << "@protocol " << *PID << '\n'; in VisitObjCProtocolDecl() 1038 VisitDeclContext(PID, false); in VisitObjCProtocolDecl() 1042 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl() argument 1043 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n"; in VisitObjCCategoryImplDecl() 1045 VisitDeclContext(PID, false); in VisitObjCCategoryImplDecl() [all …]
|
D | DeclObjC.cpp | 201 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this); in FindPropertyDeclaration() local 202 for (const auto *I : PID->protocols()) in FindPropertyDeclaration() 1718 for (auto *PID : property_impls()) in FindPropertyImplIvarDecl() local 1719 if (PID->getPropertyIvarDecl() && in FindPropertyImplIvarDecl() 1720 PID->getPropertyIvarDecl()->getIdentifier() == ivarId) in FindPropertyImplIvarDecl() 1721 return PID; in FindPropertyImplIvarDecl() 1731 for (auto *PID : property_impls()) in FindPropertyImplDecl() local 1732 if (PID->getPropertyDecl()->getIdentifier() == Id) in FindPropertyImplDecl() 1733 return PID; in FindPropertyImplDecl()
|
/external/skia/platform_tools/android/bin/ |
D | android_gdb_apk | 39 PID=$($ADB shell ps | grep com.skia | awk '{print $2}') 40 echo "Attaching to pid: $PID" 41 $ADB shell /data/local/tmp/gdbserver :$PORT --attach $PID &
|
/external/chromium_org/third_party/skia/platform_tools/android/bin/ |
D | android_gdb_apk | 39 PID=$($ADB shell ps | grep com.skia | awk '{print $2}') 40 echo "Attaching to pid: $PID" 41 $ADB shell /data/local/tmp/gdbserver :$PORT --attach $PID &
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | mutex_os2.c | 164 PID pid; in os2MutexFree() 181 PID pid; in os2MutexHeld() 192 PID pid; in os2MutexNotheld() 203 PID pid; in os2MutexTrace()
|
/external/strace/ |
D | strace-log-merge | 8 Finds all STRACE_LOG.PID files, adds PID prefix to every line,
|
/external/chromium_org/build/android/ |
D | adb_gdb | 98 PID= 145 PID=$optarg 816 if [ -z "$PID" ]; then 822 PID=$(adb_shell ps | \ 825 if [ -z "$PID" ]; then 826 PID=$(adb_shell ps | \ 829 if [ -z "$PID" ]; then 837 log "Found process PID: $PID" 875 MAPPINGS=$(adb_shell $COMMAND_PREFIX cat /proc/$PID/maps) 953 --attach $PID" [all …]
|
/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/clang/test/SemaObjCXX/ |
D | pointer-to-objc-pointer-conv.mm | 20 id *PID; 21 [b foo:PID];
|
/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/chromium_org/third_party/skia/platform_tools/barelinux/bin/ |
D | arm64_download | 108 for PID in $(ps -o 'pid=' -C 'Foundation_v8') ; do 109 kill $PID
|
/external/skia/platform_tools/barelinux/bin/ |
D | arm64_download | 108 for PID in $(ps -o 'pid=' -C 'Foundation_v8') ; do 109 kill $PID
|
/external/llvm/include/llvm/Support/ |
D | LockFileManager.h | 66 static bool processStillExecuting(StringRef Hostname, int PID);
|
/external/clang/lib/CodeGen/ |
D | CGObjC.cpp | 746 const ObjCPropertyImplDecl *PID) { in GenerateObjCGetter() argument 748 GenerateObjCAtomicGetterCopyHelperFunction(PID); in GenerateObjCGetter() 749 const ObjCPropertyDecl *PD = PID->getPropertyDecl(); in GenerateObjCGetter() 754 generateObjCGetterBody(IMP, PID, OMD, AtomicHelperFn); in GenerateObjCGetter() 1062 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { in hasTrivialSetExpr() argument 1063 Expr *setter = PID->getSetterCXXAssignment(); in hasTrivialSetExpr() 1275 const ObjCPropertyImplDecl *PID) { in GenerateObjCSetter() argument 1277 GenerateObjCAtomicSetterCopyHelperFunction(PID); in GenerateObjCSetter() 1278 const ObjCPropertyDecl *PD = PID->getPropertyDecl(); in GenerateObjCSetter() 1283 generateObjCSetterBody(IMP, PID, AtomicHelperFn); in GenerateObjCSetter() [all …]
|
/external/sepolicy/ |
D | lmkd.te | 15 ## Open and write to /proc/PID/oom_score_adj
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/ |
D | perf-timechart.txt | 39 Select the processes to display, by name or PID
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 245 pid_t PID = 0; 246 int Err = posix_spawn(&PID, Program.str().c_str(), FileActions, 256 PI.Pid = PID;
|
/external/chromium_org/components/metrics/proto/ |
D | profiler_event.proto | 88 // The local PID for the process within which this task was executed.
|
/external/ltrace/sysdeps/linux-gnu/ |
D | proc.c | 58 #define PROC_PID_FILE(VAR, FORMAT, PID) \ argument 60 sprintf(VAR, FORMAT, PID)
|
/external/valgrind/main/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
|