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

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/exception/
H A DCommandFailedException.java35 private ProcessResult result; field in class:CommandFailedException
44 * @param result
45 * the result of the failed command
47 public CommandFailedException(ProcessResult result) { argument
49 TextUtil.join(" ", (Object[])result.getCommand()),
50 result.getExitValue(), result.getStderrAsString()));
51 this.result = result;
59 return result;
[all...]
/solaris-userland-s11u3/components/ruby/puppet/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-s11u3/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-s11u3/tools/python/pkglint/
H A Duserland.py229 result = os.path.dirname(path) variable in class:UserlandActionChecker
233 result = os.path.dirname(result) variable in class:UserlandActionChecker
237 result = os.path.join(result, frag) variable in class:UserlandActionChecker
239 return result
242 result = None
247 return result
263 return result
268 return result
[all...]
/solaris-userland-s11u3/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 */

Completed in 24 milliseconds