Searched defs:numstr (Results 1 - 4 of 4) sorted by relevance

/external/tcpdump/
H A Dprint-telnet.c97 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
100 numstr(int x) function
H A Dprint-isakmp.c131 static char *numstr(int);
223 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
1252 ND_PRINT((ndo," type=%s", numstr(ntohs(n.type))));
1256 ND_PRINT((ndo," type=%s", numstr(ntohs(n.type))));
1276 ND_PRINT((ndo," type=%s", numstr(ntohs(n.type))));
2200 numstr(int x) function
/external/bluetooth/bluedroid/bta/hf_client/
H A Dbta_hf_client_at.c514 static void bta_hf_client_handle_clip(char *numstr, UINT32 type) argument
516 APPL_TRACE_DEBUG("%s %u %s", __FUNCTION__, type, numstr);
518 bta_hf_client_clip(numstr);
521 static void bta_hf_client_handle_ccwa(char *numstr, UINT32 type) argument
523 APPL_TRACE_DEBUG("%s %u %s", __FUNCTION__, type, numstr);
525 bta_hf_client_ccwa(numstr);
535 static void bta_hf_client_handle_binp(char *numstr) argument
537 APPL_TRACE_DEBUG("%s %s", __FUNCTION__, numstr);
539 bta_hf_client_binp(numstr);
542 static void bta_hf_client_handle_clcc(UINT16 idx, UINT16 dir, UINT16 status, UINT16 mode, UINT16 mpty, char *numstr, UINT1 argument
555 bta_hf_client_handle_cnum( char *numstr, UINT16 type, UINT16 service) argument
963 char numstr[33]; local
989 char numstr[33]; /* spec forces 32 chars, plus one for \\0*/ local
1056 char numstr[33]; /* spec forces 32 chars, plus one for \\0*/ local
[all...]
/external/chromium_org/third_party/simplejson/
H A D_speedups.c1505 PyObject *numstr; local
1561 numstr = PyString_FromStringAndSize(&str[start], idx - start);
1562 if (numstr == NULL)
1567 rval = PyObject_CallFunctionObjArgs(s->parse_float, numstr, NULL);
1570 /* rval = PyFloat_FromDouble(PyOS_ascii_atof(PyString_AS_STRING(numstr))); */
1571 double d = PyOS_string_to_double(PyString_AS_STRING(numstr),
1581 rval = PyObject_CallFunctionObjArgs(s->parse_int, numstr, NULL);
1584 rval = PyInt_FromString(PyString_AS_STRING(numstr), NULL, 10);
1587 Py_DECREF(numstr);
1608 PyObject *numstr; local
[all...]

Completed in 2848 milliseconds