Home
last modified time | relevance | path

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

1234

/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/llvm/lib/Support/
DLockFileManager.cpp48 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/
DDeclPrinter.cpp1023 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 …]
DDeclObjC.cpp201 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/
Dandroid_gdb_apk39 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/
Dandroid_gdb_apk39 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/
Dmutex_os2.c164 PID pid; in os2MutexFree()
181 PID pid; in os2MutexHeld()
192 PID pid; in os2MutexNotheld()
203 PID pid; in os2MutexTrace()
/external/strace/
Dstrace-log-merge8 Finds all STRACE_LOG.PID files, adds PID prefix to every line,
/external/chromium_org/build/android/
Dadb_gdb98 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/
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/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm20 id *PID;
21 [b foo:PID];
/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/chromium_org/third_party/skia/platform_tools/barelinux/bin/
Darm64_download108 for PID in $(ps -o 'pid=' -C 'Foundation_v8') ; do
109 kill $PID
/external/skia/platform_tools/barelinux/bin/
Darm64_download108 for PID in $(ps -o 'pid=' -C 'Foundation_v8') ; do
109 kill $PID
/external/llvm/include/llvm/Support/
DLockFileManager.h66 static bool processStillExecuting(StringRef Hostname, int PID);
/external/clang/lib/CodeGen/
DCGObjC.cpp746 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/
Dlmkd.te15 ## Open and write to /proc/PID/oom_score_adj
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
Dperf-timechart.txt39 Select the processes to display, by name or PID
/external/llvm/lib/Support/Unix/
DProgram.inc245 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/
Dprofiler_event.proto88 // The local PID for the process within which this task was executed.
/external/ltrace/sysdeps/linux-gnu/
Dproc.c58 #define PROC_PID_FILE(VAR, FORMAT, PID) \ argument
60 sprintf(VAR, FORMAT, PID)
/external/valgrind/main/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

1234