/ndk/build/awk/ |
extract-pid.awk | 16 # Extract the pid of a given package name. This assumes that the 30 PID=0 44 # contains the package name, while the 2nd one contains the pid 47 PID=$2 51 print PID
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
p2p-action-udhcp.sh | 14 PID=`cat $PF` 15 if [ $PID -gt 0 ]; then 16 if ps $PID | grep -q $NAME; then 17 kill $PID 26 kill_daemon udhcpc /var/run/udhcpc-$GIFNAME.pid 31 kill_daemon udhcpc /var/run/udhcpc-$GIFNAME.pid 32 kill_daemon udhcpd /var/run/udhcpd-$GIFNAME.pid 33 udhcpc -i $GIFNAME -p /var/run/udhcpc-$GIFNAME.pid \ 41 kill_daemon udhcpd /var/run/udhcpd-$GIFNAME.pid 45 kill_daemon udhcpc /var/run/udhcpc-$GIFNAME.pid [all...] |
p2p-action.sh | 14 PID=`cat $PF` 15 if [ $PID -gt 0 ]; then 16 if ps $PID | grep -q $NAME; then 17 kill $PID 26 kill_daemon dhclient /var/run/dhclient-$GIFNAME.pid 28 kill_daemon dnsmasq /var/run/dnsmasq.pid-$GIFNAME 30 if ! dnsmasq -x /var/run/dnsmasq.pid-$GIFNAME \ 35 dnsmasq -x /var/run/dnsmasq.pid-$GIFNAME \ 41 kill_daemon dhclient /var/run/dhclient-$GIFNAME.pid 43 kill_daemon dnsmasq /var/run/dnsmasq.pid-$GIFNAM [all...] |
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodesettextcontent08.js | 80 Using setTextContent on a new Processing Instruction node, attempt to set its data to PID. 81 Retreive the textContent and verify if it is was set to PID. 103 pi = doc.createProcessingInstruction("PIT","PID"); 105 pi.textContent = "PID"; 109 assertEquals("nodesettextcontent08","PID",textContent);
|
noderemovechild09.js | 102 pi = doc.createProcessingInstruction("PIT","PID");
|
nodecomparedocumentposition34.js | 106 pi = doc.createProcessingInstruction("PIT","PID");
|
/external/clang/lib/ARCMigrate/ |
TransZeroOutPropsInDealloc.cpp | 104 ObjCPropertyImplDecl *PID = *I; 105 if (PID->getPropertyImplementation() == 107 ObjCPropertyDecl *PD = PID->getPropertyDecl(); 116 SynthesizedProperties[PD] = PID;
|
/external/clang/lib/AST/ |
DeclPrinter.cpp | 864 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { 865 Out << "@protocol " << PID << '\n'; 866 VisitDeclContext(PID, false); 870 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { 871 Out << "@implementation " << PID->getClassInterface() << '(' << PID << ")\n"; 873 VisitDeclContext(PID, false); 878 void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) { 879 Out << "@interface " << PID->getClassInterface() << '(' << PID << ")\n" [all...] |
DeclObjC.cpp | 106 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this); 107 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(), 108 E = PID->protocol_end(); I != E; ++I) [all...] |
ASTContext.cpp | [all...] |
/frameworks/base/media/libstagefright/mpeg2ts/ |
ATSParser.h | 93 ABitReader *br, unsigned PID,
|
ATSParser.cpp | 50 unsigned pid, unsigned payload_unit_start_indicator, 89 unsigned pid() const { return mElementaryPID; } function in struct:android::ATSParser::Stream 90 void setPID(unsigned pid) { mElementaryPID = pid; } 142 unsigned pid, unsigned payload_unit_start_indicator, 146 if (pid == mProgramMapPID) { 157 ssize_t index = mStreams.indexOfKey(pid); 294 LOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type()); 301 LOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType) [all...] |
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
dynamic-dnsmasq.pl | 44 my $dnsmasqpidfile = "/var/run/dnsmasq.pid"; # if this doesn't exist, will look for process in /proc 224 open(PID,"<$dnsmasqpidfile") || die "Could not open PID file \"$dnsmasqpidfile\": $!\n"; 225 my $pid = <PID>; 226 close(PID); 227 chomp $pid; 228 if ( kill(0, $pid) ) { 229 kill(1, $pid);
|
/ndk/ |
ndk-gdb | 573 # Find the PID of the application being run 574 PID=`$ADB_CMD shell ps | $AWK_CMD -f $AWK_SCRIPTS/extract-pid.awk -v PACKAGE=$PACKAGE_NAME` 575 log "Found running PID: $PID" 576 if [ $? != 0 -o "$PID" = "0" ] ; then 577 echo "ERROR: Could not extract PID of application on device/emulator." 600 GDBSERVER_PID=`echo $GDBSERVER_PS | $AWK_CMD -f $AWK_SCRIPTS/extract-pid.awk -v PACKAGE=lib/gdbserver` 608 run $ADB_CMD shell run-as $PACKAGE_NAME lib/gdbserver +$DEBUG_SOCKET --attach $PID &
|
/external/clang/lib/CodeGen/ |
CGObjC.cpp | 337 const ObjCPropertyImplDecl *PID) { 338 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl(); 339 const ObjCPropertyDecl *PD = PID->getPropertyDecl(); 344 StartObjCMethod(OMD, IMP->getClassInterface(), PID->getLocStart()); 358 CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy"); 439 if (PID->getGetterCXXConstructor() && 443 PID->getGetterCXXConstructor(), 532 IvarAssignHasTrvialAssignment(const ObjCPropertyImplDecl *PID, 535 if (PID->getSetterCXXAssignment()) { 547 const ObjCPropertyImplDecl *PID) { [all...] |
CodeGenModule.cpp | [all...] |
CGObjCMac.cpp | [all...] |
CodeGenFunction.h | [all...] |
/build/ |
envsetup.sh | 682 function pid() function 686 local PID=`adb shell ps | fgrep $1 | sed -e 's/[^ ]* *\([0-9]*\).*/\1/'` 687 echo "$PID" 689 echo "usage: pid name" 697 adb shell echo '""' '>>' /data/anr/traces.txt && adb shell chmod 776 /data/anr/traces.txt && adb shell kill -3 $(pid system_server) 722 local PID 726 PID="$3" 728 PID=`pid $3` 731 adb shell gdbserver $PORT --attach $PID [all...] |
/frameworks/base/media/libstagefright/ |
MPEG2TSWriter.cpp | 701 // PID = b0000000000000 (13 bits) 748 // PID = b0 0001 1110 0000 (13 bits) [0x1e0] 825 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex] 859 const unsigned PID = 0x1e0 + sourceIndex + 1; 886 *ptr++ = 0x40 | (PID >> 8); 887 *ptr++ = PID & 0xff; 921 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex] 934 *ptr++ = 0x00 | (PID >> 8); 935 *ptr++ = PID & 0xff;
|
/external/clang/lib/Sema/ |
SemaObjCProperty.cpp | [all...] |
/external/qemu/ |
usb-linux.c | 449 if (p->pid == USB_TOKEN_IN) 741 switch(p->pid) { 762 switch (p->pid) { 1679 char bus[10], addr[10], vid[10], pid[10]; local [all...] |
/external/clang/tools/libclang/ |
CIndex.cpp | 301 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID); [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-216320.js | 668 form.PID.value=pbcId;
|
/external/clang/lib/Rewrite/ |
RewriteObjC.cpp | 245 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, 768 void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, 773 SourceLocation startLoc = PID->getLocStart(); [all...] |