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

12

/external/blktrace/doc/
H A Dblktrace.tex491 -h & --hash-by-name & Hash processes by name, not by PID\\ \hline
/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/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A D_os2.h211 PID 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/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/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c16907 PID pid;
16924 PID pid;
16935 PID pid;
16946 PID pid;
25517 /* If some thread using this PID has a lock via a different unixFile*
25527 /* If a SHARED lock is requested, and some thread using this PID already
26744 /* If some thread using this PID has a lock via a different unixFile*
26754 /* If a SHARED lock is requested, and some thread using this PID already
[all...]
/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/chromium_org/third_party/usb_ids/
H A Dusb.ids72 2040 LUFA Test PID
4050 04ce SL11DEMO, VID: 0x4ce, PID: 0x4ce
4051 07d1 SL11R, VID: 0x4ce, PID: 0x07D1
11708 2002 Q018 default PID
16880 HUT 0f PID Page
16948 07F PID Pool Report
16954 085 PID Pool Move Report
16958 089 PID Block Load Report
16964 090 PID Block Free Report
16966 092 PID Stat
[all...]
/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/clang/lib/AST/
H A DASTContext.cpp4967 for (auto *PID : CID->property_impls())
4968 if (PID->getPropertyDecl() == PD)
4969 return PID;
4972 for (auto *PID : OID->property_impls())
4973 if (PID->getPropertyDecl() == PD)
4974 return PID;
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;
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...]
/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 DCGObjCMac.cpp3063 for (const auto *PID : ID->property_impls()) {
3064 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
3065 ObjCPropertyDecl *PD = PID->getPropertyDecl();
5657 for (const auto *PID : ID->property_impls()) {
5658 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
5659 ObjCPropertyDecl *PD = PID->getPropertyDecl();
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/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp329 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
938 void RewriteModernObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, argument
945 if (PID->getLocStart().isValid()) {
946 SourceLocation startLoc = PID->getLocStart();
957 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
961 ObjCPropertyDecl *PD = PID->getPropertyDecl();
962 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
H A DRewriteObjC.cpp275 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
775 void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, argument
780 SourceLocation startLoc = PID->getLocStart();
789 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
793 ObjCPropertyDecl *PD = PID->getPropertyDecl();
794 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
/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/clang/tools/libclang/
H A DCIndex.cpp1030 bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { argument
1031 if (!PID->isThisDeclarationADefinition())
1032 return Visit(MakeCursorObjCProtocolRef(PID, PID->getLocation(), TU));
1034 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
1035 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
1036 E = PID->protocol_end(); I != E; ++I, ++PL)
1040 return VisitObjCContainerDecl(PID);
H A DCursorVisitor.h223 bool VisitObjCProtocolDecl(ObjCProtocolDecl *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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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/iputils/ninfod/
H A Dninfod.sh.in4 PID=/var/run/ninfod.pid
20 kill `cat $PID`
26 kill `cat $PID`

Completed in 1808 milliseconds

12