Searched refs:getval (Results 1 - 6 of 6) sorted by relevance
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | grpndk.cpp | 80 struct group *getval = getgrent();
in Setgrent() local 82 if (getval == nullptr) {
in Setgrent() 89 strcpy(buf, getval->gr_name);
in Setgrent() 91 getval = getgrent();
in Setgrent() 92 if (getval == nullptr) {
in Setgrent() 95 if (strcmp(getval->gr_name, buf)) {
in Setgrent()
|
H A D | pwdndk.cpp | 55 struct passwd *getval = getpwent();
in Setpwent() local 57 if (getval == nullptr) {
in Setpwent() 64 strcpy(buf, getval->pw_name);
in Setpwent() 66 getval = getpwent();
in Setpwent() 67 if (getval == nullptr) {
in Setpwent() 70 if (strcmp(getval->pw_name, buf)) {
in Setpwent()
|
H A D | netdbndk.cpp | 352 protoent *getval = getprotoent();
in Setprotoent() local 353 if (getval == nullptr) {
in Setprotoent() 357 strcpy(buf, getval->p_name);
in Setprotoent() 359 getval = getprotoent();
in Setprotoent() 360 if (getval == nullptr) {
in Setprotoent() 363 if (strcmp(getval->p_name, buf)) {
in Setprotoent()
|
/third_party/toybox/toys/pending/ |
H A D | crontab.c | 63 static long getval(char *num, long low, long high) in getval() function 80 if ((skip = getval(ptr, min, (min ? max: max-1))) < 0) return 1; in validate_component() 97 if (getval(dtoken, min, (min ? max : max-1)) < 0) return 1; in validate_component() 106 if (getval(ctoken, min, (min ? max : max-1)) < 0) return 1; in validate_component()
|
H A D | crond.c | 140 static long getval(char *num, long low, long high) in getval() function 156 if ((skip = getval(ptr, min, (min ? max: max-1))) < 0) goto ERROR; in parse_and_fillarray() 173 if ((start = getval(dtoken, min, (min ? max : max-1))) < 0) goto ERROR; in parse_and_fillarray() 181 if ((end = getval(ctoken, min, (min ? max : max-1))) < 0) goto ERROR; in parse_and_fillarray()
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
H A D | test_widgets.py | 487 def check_get_current(getval, currval): 488 self.assertEqual(self.combo.get(), getval)
|
Completed in 6 milliseconds