Searched refs:PID (Results 1 - 25 of 35) sorted by relevance

12

/external/iputils/ninfod/
H A Dninfod.sh.in4 PID=/var/run/ninfod.pid
20 kill `cat $PID`
26 kill `cat $PID`
/external/strace/
H A Dstrace-log-merge8 Finds all STRACE_LOG.PID files, adds PID prefix to every line,
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dp2p-action-udhcp.sh14 PID=`cat $PF`
15 if [ $PID -gt 0 ]; then
16 if ps $PID | grep -q $NAME; then
17 kill $PID
H A Dp2p-action.sh14 PID=`cat $PF`
15 if [ $PID -gt 0 ]; then
16 if ps $PID | grep -q $NAME; then
17 kill $PID
/external/chromium_org/third_party/skia/platform_tools/android/bin/
H A 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/skia/platform_tools/android/bin/
H A 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/llvm/lib/Support/
H A DLockFileManager.cpp34 // Read the owning host and PID out of the lock file. If it appears that the
48 int PID; local
49 if (!PIDStr.getAsInteger(10, PID)) {
50 auto Owner = std::make_pair(std::string(Hostname), PID);
60 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) { argument
67 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
116 // We failed to write out PID, so make up an excuse, remove the
/external/chromium_org/third_party/sqlite/src/src/
H A Dmutex_os2.c164 PID pid;
181 PID pid;
192 PID pid;
203 PID pid;
/external/llvm/include/llvm/Support/
H A DLockFileManager.h66 static bool processStillExecuting(StringRef Hostname, int PID);
/external/dnsmasq/contrib/dynamic-dnsmasq/
H A Ddynamic-dnsmasq.pl224 open(PID,"<$dnsmasqpidfile") || die "Could not open PID file \"$dnsmasqpidfile\": $!\n";
225 my $pid = <PID>;
226 close(PID);
/external/clang/lib/AST/
H A DDeclPrinter.cpp1023 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { argument
1024 if (!PID->isThisDeclarationADefinition()) {
1025 Out << "@protocol " << *PID << ";\n"; local
1029 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1031 Out << "@protocol " << *PID; local
1037 Out << "@protocol " << *PID << '\n'; local
1038 VisitDeclContext(PID, false);
1042 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { argument
1043 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\
1050 VisitObjCCategoryDecl(ObjCCategoryDecl *PID) argument
1148 VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) argument
[all...]
H A DDeclObjC.cpp201 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this); local
202 for (const auto *I : PID->protocols())
1718 for (auto *PID : property_impls())
1719 if (PID->getPropertyIvarDecl() &&
1720 PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
1721 return PID;
1731 for (auto *PID : property_impls())
1732 if (PID->getPropertyDecl()->getIdentifier() == Id)
1733 return PID;
/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp116 for (auto *PID : IMD->property_impls()) {
117 if (PID->getPropertyImplementation() ==
119 ObjCPropertyDecl *PD = PID->getPropertyDecl();
128 SynthesizedProperties[PD] = PID;
/external/chromium_org/third_party/skia/platform_tools/barelinux/bin/
H A Darm64_download108 for PID in $(ps -o 'pid=' -C 'Foundation_v8') ; do
109 kill $PID
/external/skia/platform_tools/barelinux/bin/
H A Darm64_download108 for PID in $(ps -o 'pid=' -C 'Foundation_v8') ; do
109 kill $PID
/external/chromium_org/build/android/
H A Dadb_gdb98 PID=
145 PID=$optarg
612 # sub-shell commands we're going to launch, so take the PID of the launcher
665 log "Killing previous gdbserver (PID=$GDB_PID)"
811 # Get the PID from the first argument or else find the PID of the
813 if [ -z "$PID" ]; then
819 PID=$(adb_shell ps | \
822 if [ -z "$PID" ]; then
823 PID
[all...]
/external/llvm/lib/Support/Unix/
H A DProgram.inc245 pid_t PID = 0;
246 int Err = posix_spawn(&PID, Program.str().c_str(), FileActions,
256 PI.Pid = PID;
/external/clang/lib/CodeGen/
H A DCGObjC.cpp746 const ObjCPropertyImplDecl *PID) {
748 GenerateObjCAtomicGetterCopyHelperFunction(PID);
749 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
754 generateObjCGetterBody(IMP, PID, OMD, AtomicHelperFn);
1062 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { argument
1063 Expr *setter = PID->getSetterCXXAssignment();
1275 const ObjCPropertyImplDecl *PID) {
1277 GenerateObjCAtomicSetterCopyHelperFunction(PID);
1278 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
1283 generateObjCSetterBody(IMP, PID, AtomicHelperF
745 GenerateObjCGetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID) argument
1274 GenerateObjCSetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID) argument
2869 GenerateObjCAtomicSetterCopyHelperFunction( const ObjCPropertyImplDecl *PID) argument
2946 GenerateObjCAtomicGetterCopyHelperFunction( const ObjCPropertyImplDecl *PID) argument
[all...]
H A DCodeGenFunction.h1086 const ObjCPropertyImplDecl *PID);
1098 const ObjCPropertyImplDecl *PID);
1125 const ObjCPropertyImplDecl *PID);
1127 const ObjCPropertyImplDecl *PID);
H A DCodeGenModule.cpp2966 for (const auto *PID : D->property_impls()) {
2968 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2969 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2978 const_cast<ObjCImplementationDecl *>(D), PID); local
2982 const_cast<ObjCImplementationDecl *>(D), PID); local
/external/clang/tools/libclang/
H A DCursorVisitor.h223 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
/external/ltrace/sysdeps/linux-gnu/
H A Dproc.c58 #define PROC_PID_FILE(VAR, FORMAT, PID) \
60 sprintf(VAR, FORMAT, PID)
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1564 if (ObjCPropertyImplDecl *PID =
1566 if (PID->getPropertyDecl() != Prop) {
1569 if (!PID->getLocation().isInvalid())
1570 Diag(PID->getLocation(), diag::note_property_synthesize);
1839 for (const auto *PID : D->property_impls()) {
1840 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-script.c213 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
300 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
302 else if (PRINT_FIELD(PID))
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A D_os2.h211 PID pid;

Completed in 1030 milliseconds

12