/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/exception/ |
H A D | CommandFailedException.java | 35 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 D | ConfigReader.java | 40 String result; 42 result = super.readLine(); 43 } while (result != null && result.startsWith("#")); 44 return (result);
|
H A D | DefaultsWriter.java | 43 Map<String, String> result = new HashMap<String, String>(); 52 result.put(pieces[0], pieces[1]); 55 return (result);
|
H A D | NameValue.java | 64 int result = ObjectUtil.compare(n1, n2); 66 if (result == 0) { 70 result = ObjectUtil.compare((Comparable)v1, (Comparable)v2); 74 return result;
|
H A D | ProcessUtil.java | 42 * @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 D | TermUtil.java | 118 ProcessResult result = AccessController.doPrivileged( 148 return result;
|
/solaris-userland-s11u3/tools/ |
H A D | time.c | 85 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 D | userland-mangler | 68 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 D | bass-o-matic | 74 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 D | gen-components | 142 result = [ "Unknown", "Unknown", "Unknown" ] 153 result = owners[component_path] 156 print >> sys.stderr, "RE, RM, Team: ", result 158 return result
|
H A D | userland-incorporator | 66 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 D | PathDocument.java | 122 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 D | SummaryBuilder.java | 79 JEditorPane result = new JEditorPane("text/html", 81 result.setEditable(false); 83 return (result);
|
/solaris-userland-s11u3/components/bind/Solaris/ |
H A D | dns-server.sh | 29 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 D | puppet_audit.c | 58 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 D | userland.py | 229 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 D | TableSorter.java | 134 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 D | FMRI.java | 339 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 D | FilterManagedObject.java | 156 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 D | CoreUtil.java | 112 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 D | PanelClassLoader.java | 121 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 D | github_commits.c | 38 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 D | doctools.js | 51 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 D | HelpFormatter.java | 138 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 D | net_lib.py | 68 result = {} 71 val = result.get(atype) 73 result[atype] = [] 74 val = result.get(atype) 77 return result
|