HomeSort by relevance Sort by last modified time
    Searched refs:PID (Results 1 - 25 of 30) sorted by null

1 2

  /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 103 ObjCPropertyImplDecl *PID = *I;
104 if (PID->getPropertyImplementation() ==
106 ObjCPropertyDecl *PD = PID->getPropertyDecl();
115 SynthesizedProperties[PD] = PID;
  /external/clang/lib/AST/
DeclPrinter.cpp 927 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
928 Out << "@protocol " << *PID << '\n';
929 VisitDeclContext(PID, false);
933 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
934 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n";
936 VisitDeclContext(PID, false);
941 void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) {
942 Out << "@interface " << *PID->getClassInterface() << '(' << *PID << ")\n"
    [all...]
DeclObjC.cpp 107 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this);
108 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
109 E = PID->protocol_end(); I != E; ++I)
    [all...]
ASTContext.cpp     [all...]
  /frameworks/base/media/libstagefright/mpeg2ts/
ATSParser.h 103 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; }
145 unsigned pid, unsigned payload_unit_start_indicator,
149 if (pid == mProgramMapPID) {
160 ssize_t index = mStreams.indexOfKey(pid);
297 LOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
304 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/Frontend/
CompilerInstance.cpp 723 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;
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) {
775 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
822 // We failed to write out PID, so make up an excuse, remove th
    [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/CodeGen/
CGObjC.cpp 566 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) {
779 Expr *setter = PID->getSetterCXXAssignment();
    [all...]
CodeGenModule.cpp     [all...]
CGObjCMac.cpp     [all...]
  /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 302 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
961 bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
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);
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 668 form.PID.value=pbcId;
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 254 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
    [all...]

Completed in 1456 milliseconds

1 2