Searched refs:name_chars (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Modules/ |
H A D | grpmodule.c | 193 char *buf = NULL, *buf2 = NULL, *name_chars; in grp_getgrnam_impl() local 201 if (PyBytes_AsStringAndSize(bytes, &name_chars, NULL) == -1) in grp_getgrnam_impl() 223 status = getgrnam_r(name_chars, &grp, buf, bufsize, &p); in grp_getgrnam_impl() 239 p = getgrnam(name_chars); in grp_getgrnam_impl()
|
H A D | pwdmodule.c | 215 char *buf = NULL, *buf2 = NULL, *name_chars; in pwd_getpwnam_impl() local 223 if (PyBytes_AsStringAndSize(bytes, &name_chars, NULL) == -1) in pwd_getpwnam_impl() 245 status = getpwnam_r(name_chars, &pwd, buf, bufsize, &p); in pwd_getpwnam_impl() 261 p = getpwnam(name_chars); in pwd_getpwnam_impl()
|
/third_party/icu/tools/unicode/py/ |
H A D | preparseucd.py | 1798 name_chars = set() 1812 name_chars |= set(name) 1826 (len(name_chars), "".join(sorted(name_chars)))) 1850 # Codes=bytes, 40 byte values for name_chars. 1857 max_token_units = num_units - len(name_chars)
|
Completed in 6 milliseconds