Home
last modified time | relevance | path

Searched refs:unicodestr (Results 1 – 3 of 3) sorted by relevance

/external/tcpdump/
Dprint-smb.c26 static int unicodestr = 0; variable
101 smb_fdata(ndo, param, fmt, param + pcnt, unicodestr); in trans2_findfirst()
119 smb_fdata(ndo, param, fmt, param + pcnt, unicodestr); in trans2_qfsinfo()
135 smb_fdata(ndo, data, fmt, data + dcnt, unicodestr); in trans2_qfsinfo()
209 maxbuf, unicodestr); in print_trans2()
214 words + 1 + 14 * 2, unicodestr); in print_trans2()
221 words + 1 + 10 * 2, unicodestr); in print_trans2()
232 smb_fdata(ndo, param, f1 ? f1 : "Parameters=\n", param + pcnt, unicodestr); in print_trans2()
233 smb_fdata(ndo, data, f2 ? f2 : "Data=\n", data + dcnt, unicodestr); in print_trans2()
250 smb_fdata(ndo, param, "BROWSE PACKET\n|Param ", param+paramlen, unicodestr); in print_browse()
[all …]
Dsmbutil.c436 int unicodestr) in smb_fdata1() argument
622 s = unistr(ndo, buf, &len, (*fmt == 'R') ? 0 : unicodestr); in smb_fdata1()
642 s = unistr(ndo, buf + 1, &len, (*fmt == 'Y') ? 0 : unicodestr); in smb_fdata1()
674 s = unistr(ndo, buf, &stringlen, unicodestr); in smb_fdata1()
796 int unicodestr) in smb_fdata() argument
809 buf2 = smb_fdata(ndo, buf, fmt, maxbuf, unicodestr); in smb_fdata()
848 buf = smb_fdata1(ndo, buf, s, maxbuf, unicodestr); in smb_fdata()
/external/python/cpython2/Objects/
Dobject.c477 static PyObject *unicodestr = NULL; in PyObject_Unicode() local
494 if (!unicodestr) { in PyObject_Unicode()
495 unicodestr = PyString_InternFromString("__unicode__"); in PyObject_Unicode()
496 if (!unicodestr) in PyObject_Unicode()
499 func = PyObject_GetAttr(v, unicodestr); in PyObject_Unicode()
511 func = _PyObject_LookupSpecial(v, "__unicode__", &unicodestr); in PyObject_Unicode()