Searched refs:result (Results 1 - 25 of 37) sorted by relevance

12

/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/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DConfigReader.java40 String result;
42 result = super.readLine();
43 } while (result != null && result.startsWith("#"));
44 return (result);
H A DDefaultsWriter.java43 Map<String, String> result = new HashMap<String, String>();
52 result.put(pieces[0], pieces[1]);
55 return (result);
H A DNameValue.java64 int result = ObjectUtil.compare(n1, n2);
66 if (result == 0) {
70 result = ObjectUtil.compare((Comparable)v1, (Comparable)v2);
74 return result;
H A DProcessUtil.java42 * @return the result of the command
73 * @return the result of the command
83 * if the command exits with a result other than {@code
89 ProcessResult result = exec(command);
90 if (result.getExitValue() != expExitValue) {
91 throw new CommandFailedException(result);
94 return result;
H A DTermUtil.java118 ProcessResult result = AccessController.doPrivileged(
148 return result;
/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...]
H A Duserland-mangler68 result = ''
72 result = attribute_oracle_table_header
74 result += ("\n.\\\" on %s" % modified_date)
75 result += attribute_table_header
78 result += (attribute_table_availability % availability)
80 result += (attribute_table_stability % stability.capitalize())
81 result += attribute_table_footer
83 return result
100 result = ''
105 result
[all...]
H A Dbass-o-matic74 result = False
79 result = True
81 return result
85 result = list()
95 result.append(out)
102 return result
105 result = "Component:\n\tPath: %s\n" % self.path
106 result = result + "\tProvides Package(s):\n\t\t%s\n" % '\t\t'.join(self.supplied_packages)
107 result
[all...]
H A Dgen-components142 result = [ "Unknown", "Unknown", "Unknown" ]
153 result = owners[component_path]
156 print >> sys.stderr, "RE, RM, Team: ", result
158 return result
H A Duserland-incorporator66 result = """
78 result += (self.__package_to_str(name, self.packages[name]) + '\n')
80 return result
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/path/
H A DPathDocument.java122 TokenSearchResult result = findToken(search, sOffset);
123 if (result.token == null) {
128 // result.token, search, result.index);
130 AttributeSet style = factory.getAttributeSet(result.token);
132 int cStart = start + result.index;
133 int cLength = result.token.length();
142 sOffset = start + result.index + result.token.length();
219 TokenSearchResult result
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DSummaryBuilder.java79 JEditorPane result = new JEditorPane("text/html",
81 result.setEditable(false);
83 return (result);
/solaris-userland-s11u3/components/bind/Solaris/
H A Ddns-server.sh29 result=${SMF_EXIT_OK}
135 result=${SMF_EXIT_ERR_CONFIG}
138 if [ ${result} = ${SMF_EXIT_OK} ]; then
144 result=$?
145 if [ $result -ne 0 ]; then
159 exit ${result}
/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/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/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DTableSorter.java134 int result = s1.compareTo(s2);
136 if (result < 0)
138 else if (result > 0)
159 int result = s1.compareTo(s2);
161 if (result < 0)
163 else if (result > 0)
174 int result = compareRowsByColumn(row1, row2, column.intValue());
175 if (result != 0)
176 return ascending ? result : -result;
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/smf-old/com/oracle/solaris/scf/common/
H A DFMRI.java339 int result = scheme_.compareTo(f.scheme_);
341 if (result == 0)
342 result = strcmp(scope_, f.scope_);
344 result = strcmp(name_, f.name_);
346 if (result == 0)
347 result = strcmp(service_, f.service_);
348 if (result == 0)
349 result = strcmp(instance_, f.instance_);
350 if (result == 0)
351 result
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/model/
H A DFilterManagedObject.java156 int result;
162 result = 0;
165 result = -1;
171 result = mapping + 1;
177 if (result == -1 && index < oldsize) {
180 result = mapping;
186 if (result == -1)
187 result = 0;
190 return (result);
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/
H A DCoreUtil.java112 PathElement[] result = new PathElement[elements.length];
117 result[e] = new PathElement(elements[e], false, false);
136 result[e] = new PathElement(buffer.toString(), true, isDir);
139 return (result);
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/
H A DPanelClassLoader.java121 StringBuilder result = new StringBuilder();
126 result.append(matcher.group(1));
133 result.append(value);
137 result.append(str);
141 return result.toString();
/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 */
/solaris-userland-s11u3/components/jansson/doc/html/_static/
H A Ddoctools.js51 var result = {};
56 if (key in result)
57 result[key].push(value);
59 result[key] = [value];
61 return result;
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/cli/
H A DHelpFormatter.java138 int result = aName.toLowerCase().compareTo(
141 if (result == 0) {
143 result = bName.compareTo(aName);
146 return result;
/solaris-userland-s11u3/components/openstack/neutron/files/agent/solaris/
H A Dnet_lib.py68 result = {}
71 val = result.get(atype)
73 result[atype] = []
74 val = result.get(atype)
77 return result

Completed in 95 milliseconds

12