Searched refs:PID (Results 1 - 25 of 34) 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/openssh/
H A Dopensshd.init.in43 PID=`${CAT} ${PIDFILE}`
45 if [ ${PID:=0} -gt 1 -a ! "X$PID" = "X " ]; then
46 ${KILL} ${PID}
48 echo "Unable to read PID file"
/external/openssh/regress/
H A Dreconfigure.sh18 PID=`$SUDO cat $PIDFILE`
20 $SUDO kill -HUP $PID
/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/llvm/lib/Support/
H A DLockFileManager.cpp38 // 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 return std::make_pair(std::string(Hostname), PID);
57 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) { argument
64 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
111 // 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.h57 static bool processStillExecuting(StringRef Hostname, int PID);
/external/chromium_org/build/android/
H A Dadb_gdb93 PID=
137 PID=$optarg
595 # sub-shell commands we're going to launch, so take the PID of the launcher
648 log "Killing previous gdbserver (PID=$GDB_PID)"
794 # Get the PID from the first argument or else find the PID of the
796 if [ -z "$PID" ]; then
802 PID=$(adb_shell ps | \
805 if [ -z "$PID" ]; then
806 PID
[all...]
/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.cpp1020 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { argument
1021 if (!PID->isThisDeclarationADefinition()) {
1022 Out << "@protocol " << *PID << ";\n"; local
1026 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1028 Out << "@protocol " << *PID; local
1034 Out << "@protocol " << *PID << '\n'; local
1035 VisitDeclContext(PID, false);
1039 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { argument
1040 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\
1047 VisitObjCCategoryDecl(ObjCCategoryDecl *PID) argument
1147 VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) argument
[all...]
H A DDeclObjC.cpp211 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this); local
212 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
213 E = PID->protocol_end(); I != E; ++I)
1652 ObjCPropertyImplDecl *PID = *i; local
1653 if (PID->getPropertyIvarDecl() &&
1654 PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
1655 return PID;
1667 ObjCPropertyImplDecl *PID = *i; local
1668 if (PID->getPropertyDecl()->getIdentifier() == Id)
1669 return PID;
[all...]
H A DASTContext.cpp4923 ObjCPropertyImplDecl *PID = *i; local
4924 if (PID->getPropertyDecl() == PD) {
4925 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4928 SynthesizePID = PID;
4937 ObjCPropertyImplDecl *PID = *i; local
4938 if (PID->getPropertyDecl() == PD) {
4939 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4942 SynthesizePID = PID;
/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp118 ObjCPropertyImplDecl *PID = *I; local
119 if (PID->getPropertyImplementation() ==
121 ObjCPropertyDecl *PD = PID->getPropertyDecl();
130 SynthesizedProperties[PD] = PID;
/external/clang/lib/CodeGen/
H A DCGObjC.cpp743 const ObjCPropertyImplDecl *PID) {
745 GenerateObjCAtomicGetterCopyHelperFunction(PID);
746 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
751 generateObjCGetterBody(IMP, PID, OMD, AtomicHelperFn);
1056 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { argument
1057 Expr *setter = PID->getSetterCXXAssignment();
1269 const ObjCPropertyImplDecl *PID) {
1271 GenerateObjCAtomicSetterCopyHelperFunction(PID);
1272 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
1277 generateObjCSetterBody(IMP, PID, AtomicHelperF
742 GenerateObjCGetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID) argument
1268 GenerateObjCSetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID) argument
2856 GenerateObjCAtomicSetterCopyHelperFunction( const ObjCPropertyImplDecl *PID) argument
2938 GenerateObjCAtomicGetterCopyHelperFunction( const ObjCPropertyImplDecl *PID) argument
[all...]
H A DCodeGenFunction.h1074 const ObjCPropertyImplDecl *PID);
1086 const ObjCPropertyImplDecl *PID);
1113 const ObjCPropertyImplDecl *PID);
1115 const ObjCPropertyImplDecl *PID);
H A DCodeGenModule.cpp2718 ObjCPropertyImplDecl *PID = *i; local
2721 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2722 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2731 const_cast<ObjCImplementationDecl *>(D), PID); local
2735 const_cast<ObjCImplementationDecl *>(D), PID); local
H A DCGObjCMac.cpp3088 ObjCPropertyImplDecl *PID = *i; local
3090 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
3091 ObjCPropertyDecl *PD = PID->getPropertyDecl();
5685 ObjCPropertyImplDecl *PID = *i; local
5687 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
5688 ObjCPropertyDecl *PD = PID->getPropertyDecl();
/external/clang/tools/libclang/
H A DCursorVisitor.h223 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
H A DCIndex.cpp1031 bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { argument
1032 if (!PID->isThisDeclarationADefinition())
1033 return Visit(MakeCursorObjCProtocolRef(PID, PID->getLocation(), TU));
1035 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
1036 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
1037 E = PID->protocol_end(); I != E; ++I, ++PL)
1041 return VisitObjCContainerDecl(PID);
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1595 if (ObjCPropertyImplDecl *PID =
1597 if (PID->getPropertyDecl() != Prop) {
1600 if (!PID->getLocation().isInvalid())
1601 Diag(PID->getLocation(), diag::note_property_synthesize);
1838 ObjCPropertyImplDecl *PID = *i; local
1839 if (PID->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
1842 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
1852 Diag(PID->getLocation(), diag::err_ownin_getter_rule);
1854 Diag(PID->getLocation(), diag::warn_owning_getter_rule);
/external/linux-tools-perf/
H A Dbuiltin-script.c170 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
239 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
241 else if (PRINT_FIELD(PID))
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A D_os2.h211 PID pid;
/external/qemu/
H A Dusb-linux.c1396 enum { BUS, DEV, VID, PID, DONE }; enumerator in enum:__anon25119
1417 case PID: f->product_id = strtol(p, NULL, 16); break;
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp274 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
768 void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, argument
773 SourceLocation startLoc = PID->getLocStart();
782 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
786 ObjCPropertyDecl *PD = PID->getPropertyDecl();
787 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();

Completed in 523 milliseconds

12