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

/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/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp103 ObjCPropertyImplDecl *PID = *I; local
104 if (PID->getPropertyImplementation() ==
106 ObjCPropertyDecl *PD = PID->getPropertyDecl();
115 SynthesizedProperties[PD] = 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.cpp927 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { argument
928 Out << "@protocol " << *PID << '\n'; local
929 VisitDeclContext(PID, false);
933 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { argument
934 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n";
936 VisitDeclContext(PID, false);
941 void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) { argument
942 Out << "@interface " << *PID->getClassInterface() << '(' << *PID << ")\
1026 VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) argument
[all...]
H A DDeclObjC.cpp107 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this); local
108 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
109 E = PID->protocol_end(); I != E; ++I)
1061 ObjCPropertyImplDecl *PID = *i; local
1062 if (PID->getPropertyIvarDecl() &&
1063 PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
1064 return PID;
1076 ObjCPropertyImplDecl *PID = *i; local
1077 if (PID->getPropertyDecl()->getIdentifier() == Id)
1078 return PID;
[all...]
H A DASTContext.cpp4138 ObjCPropertyImplDecl *PID = *i; local
4139 if (PID->getPropertyDecl() == PD) {
4140 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4143 SynthesizePID = PID;
4152 ObjCPropertyImplDecl *PID = *i; local
4153 if (PID->getPropertyDecl() == PD) {
4154 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
4157 SynthesizePID = PID;
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp723 static bool processStillExecuting(StringRef Hostname, int PID);
753 // Read the owning host and PID out of the lock file. If it appears that the
755 int PID = 0; local
758 if (Input >> Hostname >> PID && PID > 0 &&
759 processStillExecuting(Hostname, PID))
760 return std::make_pair(Hostname, PID);
768 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) { argument
775 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
822 // We failed to write out PID, s
[all...]
/external/llvm/lib/Support/Unix/
H A DProgram.inc221 pid_t PID = 0;
222 int Err = posix_spawn(&PID, path.c_str(), FileActions, /*attrp*/0,
231 Data_ = reinterpret_cast<void*>(PID);
/external/clang/lib/CodeGen/
H A DCGObjC.cpp566 const ObjCPropertyImplDecl *PID) {
567 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
570 StartObjCMethod(OMD, IMP->getClassInterface(), PID->getLocStart());
572 generateObjCGetterBody(IMP, PID);
778 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { argument
779 Expr *setter = PID->getSetterCXXAssignment();
945 const ObjCPropertyImplDecl *PID) {
946 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
949 StartObjCMethod(OMD, IMP->getClassInterface(), PID->getLocStart());
951 generateObjCSetterBody(IMP, PID);
565 GenerateObjCGetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID) argument
944 GenerateObjCSetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID) argument
[all...]
H A DCodeGenModule.cpp2120 ObjCPropertyImplDecl *PID = *i; local
2123 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2124 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2133 const_cast<ObjCImplementationDecl *>(D), PID); local
2137 const_cast<ObjCImplementationDecl *>(D), PID); local
H A DCGObjCMac.cpp2181 ObjCPropertyImplDecl *PID = *i; local
2183 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2184 ObjCPropertyDecl *PD = PID->getPropertyDecl();
4758 ObjCPropertyImplDecl *PID = *i; local
4760 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
4761 ObjCPropertyDecl *PD = PID->getPropertyDecl();
H A DCodeGenFunction.h1247 const ObjCPropertyImplDecl *PID);
1257 const ObjCPropertyImplDecl *PID);
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1456 ObjCPropertyImplDecl *PID = *i; local
1457 if (PID->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
1460 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
1470 Diag(PID->getLocation(), diag::err_ownin_getter_rule);
1472 Diag(PID->getLocation(), diag::warn_owning_getter_rule);
/external/qemu/
H A Dusb-linux.c1395 enum { BUS, DEV, VID, PID, DONE }; enumerator in enum:__anon8815
1416 case PID: f->product_id = strtol(p, NULL, 16); break;
/external/clang/tools/libclang/
H A DCIndex.cpp302 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
961 bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { argument
962 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
963 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
964 E = PID->protocol_end(); I != E; ++I, ++PL)
968 return VisitObjCContainerDecl(PID);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-216320.js668 form.PID.value=pbcId;
/external/clang/lib/Rewrite/
H A DRewriteObjC.cpp254 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
801 void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, argument
806 SourceLocation startLoc = PID->getLocStart();
815 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
819 ObjCPropertyDecl *PD = PID->getPropertyDecl();
820 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
/external/blktrace/doc/
H A Dblktrace.tex491 -h & --hash-by-name & Hash processes by name, not by PID\\ \hline
/external/iproute2/doc/
H A Dip-cref.tex297 \item \verb|netns PID|
299 --- move the device to the network namespace associated with the process PID.
/external/sqlite/dist/
H A Dsqlite3.c.orig16663 PID pid;
16676 PID pid;
16702 PID holder1;
16714 PID holder1;
16738 PID holder1;
24108 /* If some thread using this PID has a lock via a different unixFile*
24118 /* If a SHARED lock is requested, and some thread using this PID already
25361 /* If some thread using this PID has a lock via a different unixFile*
25371 /* If a SHARED lock is requested, and some thread using this PID already
[all...]
H A Dsqlite3.c16670 PID pid;
16683 PID pid;
16709 PID holder1;
16721 PID holder1;
16745 PID holder1;
24115 /* If some thread using this PID has a lock via a different unixFile*
24125 /* If a SHARED lock is requested, and some thread using this PID already
25368 /* If some thread using this PID has a lock via a different unixFile*
25378 /* If a SHARED lock is requested, and some thread using this PID already
[all...]

Completed in 537 milliseconds