Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dgrpmodule.c210 char *buf = NULL, *buf2 = NULL, *name_chars; in grp_getgrnam_impl() local
218 if (PyBytes_AsStringAndSize(bytes, &name_chars, NULL) == -1) in grp_getgrnam_impl()
240 status = getgrnam_r(name_chars, &grp, buf, bufsize, &p); in grp_getgrnam_impl()
256 p = getgrnam(name_chars); in grp_getgrnam_impl()
Dpwdmodule.c219 char *buf = NULL, *buf2 = NULL, *name_chars; in pwd_getpwnam_impl() local
227 if (PyBytes_AsStringAndSize(bytes, &name_chars, NULL) == -1) in pwd_getpwnam_impl()
249 status = getpwnam_r(name_chars, &pwd, buf, bufsize, &p); in pwd_getpwnam_impl()
265 p = getpwnam(name_chars); in pwd_getpwnam_impl()
/external/python/cpython2/Objects/
Dcodeobject.c14 static const unsigned char *name_chars = (unsigned char *)NAME_CHARS; in all_name_chars() local
17 if (ok_name_char[*name_chars] == 0) { in all_name_chars()
19 for (p = name_chars; *p; p++) in all_name_chars()