Home
last modified time | relevance | path

Searched refs:pnum (Results 1 – 8 of 8) sorted by relevance

/external/vboot_reference/utility/
Dvbutil_what_keys109 for pnum in $(cgpt find -n -t kernel "$file" 2>/dev/null); do
111 psize=$(cgpt show -s -i "$pnum" "$file")
114 pstart=$(cgpt show -b -i "$pnum" "$file")
130 echo " part $pnum kernel: $psum ($flags) $match"
136 for pnum in $(cgpt find -n -t rootfs "$file" 2>/dev/null); do
138 psize=$(cgpt show -s -i "$pnum" "$file")
141 pstart=$(cgpt show -b -i "$pnum" "$file")
143 echo " part $pnum shellball:"
/external/iptables/extensions/
Dlibxt_multiport.c143 check_proto(uint16_t pnum, uint8_t invflags) in check_proto() argument
151 if ((proto = proto_to_name(pnum)) != NULL) in check_proto()
153 else if (!pnum) in check_proto()
162 static void __multiport_parse(struct xt_option_call *cb, uint16_t pnum, in __multiport_parse() argument
171 proto = check_proto(pnum, invflags); in __multiport_parse()
177 proto = check_proto(pnum, invflags); in __multiport_parse()
183 proto = check_proto(pnum, invflags); in __multiport_parse()
208 static void __multiport_parse_v1(struct xt_option_call *cb, uint16_t pnum, in __multiport_parse_v1() argument
217 proto = check_proto(pnum, invflags); in __multiport_parse_v1()
222 proto = check_proto(pnum, invflags); in __multiport_parse_v1()
[all …]
/external/libmtp/examples/
Dsendtr.c265 char *pnum; in sendtrack_function() local
266 if ( (pnum = prompt("Track number", num, 80, 0)) == NULL ) in sendtrack_function()
269 tracknum = strtoul(pnum, 0, 10); in sendtrack_function()
273 char *pnum; in sendtrack_function() local
274 if ( (pnum = prompt("Year", num, 80, 0)) == NULL ) in sendtrack_function()
277 year = strtoul(pnum, 0, 10); in sendtrack_function()
281 char *pnum; in sendtrack_function() local
282 if ( (pnum = prompt("Length", num, 80, 0)) == NULL ) in sendtrack_function()
285 length = strtoul(pnum, 0, 10); in sendtrack_function()
/external/libpcap/
Dgrammar.y291 %type <i> byteop pname pnum relop irelop
364 | pnum { $$.b = gen_ncode(cstate, NULL, (bpf_u_int32)$1,
432 qid: pnum { $$.b = gen_ncode(cstate, NULL, (bpf_u_int32)$1,
534 | VLAN pnum { $$ = gen_vlan(cstate, $2); }
536 | MPLS pnum { $$ = gen_mpls(cstate, $2); }
539 | PPPOES pnum { $$ = gen_pppoes(cstate, $2); }
541 | GENEVE pnum { $$ = gen_geneve(cstate, $2); }
669 arth: pnum { $$ = gen_loadi(cstate, $1); }
694 pnum: NUM
695 | paren pnum ')' { $$ = $2; }
/external/libcups/cups/
Dppd-emit.c777 int pnum; /* Parameter number */ in ppdEmitString() local
792 pnum = *cptr++ - '0'; in ppdEmitString()
794 pnum = pnum * 10 + *cptr++ - '0'; in ppdEmitString()
799 if (cparam->order == pnum) in ppdEmitString()
/external/python/cpython2/Doc/library/
Dcd.rst119 pnum
289 | ``pnum`` | Integer giving the program (track) number. |
/external/python/cpython2/Python/
Dast.c1729 node *pfactor, *ppower, *patom, *pnum; in ast_for_factor() local
1746 TYPE((pnum = CHILD(patom, 0))) == NUMBER) { in ast_for_factor()
1748 char *s = PyObject_MALLOC(strlen(STR(pnum)) + 2); in ast_for_factor()
1752 strcpy(s + 1, STR(pnum)); in ast_for_factor()
/external/selinux/python/sepolicy/sepolicy/
Dgui.py1916 pnum = int(port)
1917 if pnum < 1 or pnum > 65536: