Searched defs:result (Results 1 - 5 of 5) sorted by relevance

/solaris-userland/components/ruby/puppet-solaris/ext/
H A Dpuppet_audit.c58 struct passwd pwd, *result; local
74 if (getpwnam_r("puppet", &pwd, buffer, size, &result) != 0) {
81 if (result == NULL) {
88 if (adt_set_user(ah, result->pw_uid, result->pw_gid, result->pw_uid,
89 result->pw_gid, tid, ADT_NEW) != 0) {
/solaris-userland/tools/
H A Dtime.c85 time_t result = -1; local
98 result = atoll(time_string);
104 return (result);
110 time_t result = time_constant(); local
112 if (result == (time_t)-1) {
118 result = (fptr)(ptr);
120 *ptr = result;
122 return (result);
129 int result = -1; local
135 if ((result
149 int result = -1; local
[all...]
/solaris-userland/components/jansson/doc/html/_downloads/
H A Dgithub_commits.c38 struct write_result *result = (struct write_result *)stream; local
40 if(result->pos + size * nmemb >= BUFFER_SIZE - 1)
46 memcpy(result->data + result->pos, ptr, size * nmemb);
47 result->pos += size * nmemb;
102 /* zero-terminate the result */
/solaris-userland/tools/python/pkglint/
H A Duserland.py243 result = os.path.dirname(path) variable in class:UserlandActionChecker
247 result = os.path.dirname(result) variable in class:UserlandActionChecker
251 result = os.path.join(result, frag) variable in class:UserlandActionChecker
253 return result
256 result = None
261 return result
277 return result
282 return result
[all...]
/solaris-userland/components/proftpd/
H A Dmod_solaris_audit.c114 struct passwd *result = NULL; local
137 (getpwnam_r(authuser, &pwd, pwdbuf, pwdbuf_len, &result) == 0) &&
138 (result != NULL)) {

Completed in 337 milliseconds