HomeSort by relevance Sort by last modified time
    Searched refs:idstr (Results 1 - 13 of 13) sorted by null

  /external/iptables/extensions/
libip6t_dst.c 42 parse_opts_num(const char *idstr, const char *typestr)
47 id = strtoul(idstr, &ep, 0);
49 if ( idstr == ep ) {
51 UNAME " no valid digits in %s `%s'", typestr, idstr);
56 typestr, idstr);
58 if ( *idstr != '\0' && *ep != '\0' ) {
60 UNAME " error parsing %s `%s'", typestr, idstr);
libip6t_frag.c 37 parse_frag_id(const char *idstr, const char *typestr)
42 id = strtoul(idstr, &ep, 0);
44 if ( idstr == ep ) {
46 "FRAG no valid digits in %s `%s'", typestr, idstr);
51 typestr, idstr);
53 if ( *idstr != '\0' && *ep != '\0' ) {
55 "FRAG error parsing %s `%s'", typestr, idstr);
libip6t_hbh.c 49 parse_opts_num(const char *idstr, const char *typestr)
54 id = strtoul(idstr,&ep,0) ;
56 if ( idstr == ep ) {
58 "%s no valid digits in %s `%s'", UNAME, typestr, idstr);
63 typestr, idstr);
65 if ( *idstr != '\0' && *ep != '\0' ) {
67 "%s error parsing %s `%s'", UNAME, typestr, idstr);
libip6t_rt.c 43 parse_rt_num(const char *idstr, const char *typestr)
48 id = strtoul(idstr,&ep,0) ;
50 if ( idstr == ep ) {
52 "RT no valid digits in %s `%s'", typestr, idstr);
57 typestr, idstr);
59 if ( *idstr != '\0' && *ep != '\0' ) {
61 "RT error parsing %s `%s'", typestr, idstr);
  /system/core/debuggerd/
getevent.c 27 char idstr[80]; local
43 idstr[sizeof(idstr) - 1] = '\0';
52 if(ioctl(fd, EVIOCGUNIQ(sizeof(idstr) - 1), &idstr) < 1) {
54 idstr[0] = '\0';
  /external/qemu/
savevm.c 728 char idstr[256]; member in struct:SaveStateEntry
745 int register_savevm_live(const char *idstr,
757 pstrcpy(se->idstr, sizeof(se->idstr), idstr);
771 && strcmp(se->idstr, (*pse)->idstr) == 0
780 int register_savevm(const char *idstr,
787 return register_savevm_live(idstr, instance_id, version_id,
791 void unregister_savevm(const char *idstr, void *opaque
976 char idstr[256]; local
1033 char idstr[257]; local
    [all...]
  /system/core/toolbox/
getevent.c 129 char idstr[80]; local
151 idstr[sizeof(idstr) - 1] = '\0';
160 if(ioctl(fd, EVIOCGUNIQ(sizeof(idstr) - 1), &idstr) < 1) {
162 idstr[0] = '\0';
190 " id: \"%s\"\n", location, idstr);
  /dalvik/tools/
gclog.py 59 idstr = "%c%c%c%c%c" % ( \
66 return ( idstr, gctime, bytes_freed )
  /external/qemu/hw/
hw.h 238 int register_savevm(const char *idstr,
245 int register_savevm_live(const char *idstr,
253 void unregister_savevm(const char *idstr, void *opaque);
  /frameworks/base/libs/ui/
EventHub.cpp 568 char idstr[80]; local
591 idstr[sizeof(idstr) - 1] = '\0';
613 if(ioctl(fd, EVIOCGUNIQ(sizeof(idstr) - 1), &idstr) < 1) {
615 idstr[0] = '\0';
667 " id: \"%s\"\n", location, idstr);
    [all...]
  /development/simulator/wrapsim/
DevEvent.c 24 char* idstr; member in struct:EventState
79 eventState->idstr = strdup("");
91 free(eventState->idstr);
  /external/tcpdump/
print-isakmp.c 576 const char *idstr; local
589 idstr = STR_OR_ID(t.t_id, isakmp_p_map);
594 idstr = STR_OR_ID(t.t_id, ah_p_map);
599 idstr = STR_OR_ID(t.t_id, esp_p_map);
604 idstr = STR_OR_ID(t.t_id, ipcomp_p_map);
609 idstr = NULL;
615 if (idstr)
616 printf(" #%d id=%s ", t.t_no, idstr);
    [all...]
  /external/strace/
process.c 1079 static char idstr[16]; variable
1086 sprintf(idstr, "ppid %lu", getrval2(tcp));
1087 tcp->auxstr = idstr;
1098 sprintf(idstr, "euid %lu", getrval2(tcp));
1099 tcp->auxstr = idstr;
1110 sprintf(idstr, "egid %lu", getrval2(tcp));
1111 tcp->auxstr = idstr;
    [all...]

Completed in 592 milliseconds