Home
last modified time | relevance | path

Searched refs:results (Results 1 – 25 of 145) sorted by relevance

123456

/illumos-gate/usr/src/lib/libinstzones/common/
H A Dzones_states.c153 free(results); in _z_make_zone_running()
164 results == NULL ? "" : results); in _z_make_zone_running()
166 free(results); in _z_make_zone_running()
170 free(results); in _z_make_zone_running()
209 free(results); in _z_make_zone_running()
221 results == NULL ? "" : results); in _z_make_zone_running()
231 free(results); in _z_make_zone_running()
320 results == NULL ? "" : results); in _z_make_zone_ready()
354 results == NULL ? "" : results); in _z_make_zone_ready()
396 results == (char *)NULL ? "" : results); in _z_make_zone_ready()
[all …]
H A Dzones_locks.c153 char *results = (char *)NULL; in _z_acquire_lock() local
232 results ? results : ""); in _z_acquire_lock()
235 if (results) { in _z_acquire_lock()
236 free(results); in _z_acquire_lock()
248 if (results == (char *)NULL) { in _z_acquire_lock()
254 p = _z_strGetToken((char *)NULL, results, 0, "\n"); in _z_acquire_lock()
261 results); in _z_acquire_lock()
265 free(results); in _z_acquire_lock()
701 char *results = (char *)NULL; in _z_release_lock() local
767 a_zoneName, r, status, results ? results : ""); in _z_release_lock()
[all …]
/illumos-gate/usr/src/cmd/hotplug/
H A Dhotplug.c337 if (results != NULL) { in cmd_online()
339 hp_fini(results); in cmd_online()
396 hp_fini(results); in cmd_offline()
451 hp_fini(results); in cmd_enable()
517 hp_fini(results); in cmd_disable()
581 hp_fini(results); in cmd_poweron()
638 hp_fini(results); in cmd_poweroff()
702 free(results); in cmd_getpriv()
766 free(results); in cmd_setpriv()
842 if (results) { in cmd_changestate()
[all …]
/illumos-gate/usr/src/cmd/hotplugd/
H A Dhotplugd_door.c165 nvlist_t *results = NULL; in door_server() local
218 if (results != NULL) { in door_server()
243 nvlist_free(results); in door_server()
257 nvlist_free(results); in door_server()
293 nvlist_t *results; in cmd_getinfo() local
342 nvlist_free(results); in cmd_getinfo()
351 *resultsp = results; in cmd_getinfo()
443 nvlist_free(results); in cmd_changestate()
448 *resultsp = results; in cmd_changestate()
521 nvlist_free(results); in cmd_private()
[all …]
H A Dhotplugd_impl.c169 ddi_hp_property_t results; in private_options() local
183 (void) memset(&results, 0, sizeof (ddi_hp_property_t)); in private_options()
184 results.buf_size = HP_PRIVATE_BUF_SZ; in private_options()
185 results.nvlist_buf = (char *)calloc(1, HP_PRIVATE_BUF_SZ); in private_options()
186 if (results.nvlist_buf == NULL) { in private_options()
199 &prop, &results)) in private_options()
204 &prop, &results)) in private_options()
214 unpack_properties(&results, &values); in private_options()
220 free_properties(&results); in private_options()
/illumos-gate/usr/src/uts/common/idmap/
H A Didmap_kapi.c432 idmap_ids_res results; in kidmap_getuidbysid() local
459 (caddr_t)&results) == 0) { in kidmap_getuidbysid()
462 status = results.retcode; in kidmap_getuidbysid()
509 idmap_ids_res results; in kidmap_getgidbysid() local
539 status = results.retcode; in kidmap_getgidbysid()
586 idmap_ids_res results; in kidmap_getpidbysid() local
616 status = results.retcode; in kidmap_getpidbysid()
674 idmap_ids_res results; in kidmap_getsidbyuid() local
705 status = results.retcode; in kidmap_getsidbyuid()
758 idmap_ids_res results; in kidmap_getsidbygid() local
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Drt.sh84 function results # tests errors signals function
184 results $tests $errors
188 results $tests $errors
206 results $tests $errors $signals
229 results $tests $errors $signals
275 results $tests $errors $signals
285 results $tests $errors $signals
313 results $tests $errors $signals
365 *) results $tests $errors $signals
438 results $tests $errors $signals
[all …]
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Utils/t/
H A Dgmatch.t44 { pattern => 'a', results => [ 1, 0, 0, 0, 0, 0 ] },
45 { pattern => '*', results => [ 1, 1, 1, 1, 1, 1 ] },
46 { pattern => '?', results => [ 1, 0, 1, 0, 1, 0 ] },
47 { pattern => '??', results => [ 0, 1, 0, 1, 0, 0 ] },
48 { pattern => '[a-z]*', results => [ 1, 1, 1, 1, 0, 0 ] },
49 { pattern => '[!a-z]*', results => [ 0, 0, 0, 0, 1, 1 ] },
50 { pattern => '[0-9]*', results => [ 0, 0, 0, 0, 1, 1 ] },
51 { pattern => '[!0-9]*', results => [ 1, 1, 1, 1, 0, 0 ] },
56 if (gmatch($strs[$i], $t->{pattern}) == $t->{results}[$i]) {
/illumos-gate/usr/src/lib/libhotplug/common/
H A Dlibhotplug.c64 nvlist_t *results; in hp_init() local
95 nvlist_free(results); in hp_init()
511 nvlist_t *results; in hp_set_state() local
574 nvlist_free(results); in hp_set_state()
593 nvlist_t *results; in hp_set_private() local
634 nvlist_free(results); in hp_set_private()
653 nvlist_t *results; in hp_get_private() local
694 nvlist_free(results); in hp_get_private()
1172 nvlist_t *results = NULL; in i_hp_call_hotplugd() local
1241 results = NULL; in i_hp_call_hotplugd()
[all …]
/illumos-gate/usr/src/lib/librcm/
H A Dlibrcm_event.c171 struct door_result *results; member
198 if (cook->results == NULL) { in add_door_result()
199 cook->results = result; in add_door_result()
201 struct door_result *tmp = cook->results; in add_door_result()
219 tmp = cook->results; in free_door_result()
235 cook->results = tmp->next; in free_door_result()
394 struct door_result *tmp = cookie->results; in revoke_event_service()
396 cookie->results = tmp->next; in revoke_event_service()
399 tmp = cookie->results; in revoke_event_service()
/illumos-gate/usr/src/tools/onbld/Checks/
H A DDbLookups.py114 results = {}
121 results[str(cr)] = self.__illbug(cr)
128 if cr in results:
131 return results
H A DComments.py143 results = bugdb.lookup(list(bugs.keys()))
153 if crid not in results:
163 synopsis = results[crid]["synopsis"]
/illumos-gate/usr/src/cmd/dtrace/test/cmd/scripts/
H A Ddtest.pl54 %results = ();
542 $results{$dtrace} = {
715 foreach $key (keys %results) {
716 my $passed = $results{$key}{"passed"};
717 my $bypassed = $results{$key}{"bypassed"};
718 my $failed = $results{$key}{"failed"};
719 my $total = $results{$key}{"total"};
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_program/
H A Dzfs_program_json.ksh98 results = {}
99 results["succeeded"] = succeeded
100 results["failed"] = failed
101 return results
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPTemplateRegistry.java401 ServiceLocationEnumeration results = null; in findVersionedURL() local
427 results = in findVersionedURL()
446 if (!results.hasMoreElements()) { in findVersionedURL()
458 while (results.hasMoreElements()) { in findVersionedURL()
459 ServiceURL surl = (ServiceURL)results.nextElement(); in findVersionedURL()
/illumos-gate/usr/src/test/elf-tests/doc/
H A DREADME21 3. Test results
54 3. Test results
57 the end of each test, and a results summary is printed at the end of the run.
58 The results summary includes the location of the complete logs, which is of the
/illumos-gate/usr/src/test/os-tests/doc/
H A DREADME20 3. Test results
54 3. Test results
57 the end of each test, and a results summary is printed at the end of the run.
58 The results summary includes the location of the complete logs, which is of the
/illumos-gate/usr/src/test/util-tests/doc/
H A DREADME22 4. Test results
60 4. Test results
63 the end of each test, and a results summary is printed at the end of the run.
64 The results summary includes the location of the complete logs, which is of the
/illumos-gate/usr/src/test/crypto-tests/doc/
H A DREADME21 3. Test results
55 3. Test results
58 the end of each test, and a results summary is printed at the end of the run.
59 The results summary includes the location of the complete logs, which is of the
/illumos-gate/usr/src/cmd/fs.d/nfs/nfsmapid/
H A Dnfsmapid_server.c937 refd_door_res_t **results, in encode_res() argument
944 *results = malloc(sizeof (refd_door_res_t) + *size); in encode_res()
945 if (*results == NULL) { in encode_res()
948 (*results)->xdr_len = *size; in encode_res()
949 *size = sizeof (refd_door_res_t) + (*results)->xdr_len; in encode_res()
950 xdrmem_create(&xdrs, (caddr_t)((*results)->xdr_res), in encode_res()
951 (*results)->xdr_len, XDR_ENCODE); in encode_res()
953 (*results)->res_status = EINVAL; in encode_res()
955 return ((*results)->res_status); in encode_res()
957 (*results)->res_status = 0; in encode_res()
[all …]
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_main.c1007 autofs_door_res_t **results, in encode_res() argument
1014 *results = autofs_get_buffer( in encode_res()
1016 if (*results == NULL) { in encode_res()
1017 (*results)->res_status = ENOMEM; in encode_res()
1020 (*results)->xdr_len = *size; in encode_res()
1021 *size = sizeof (autofs_door_res_t) + (*results)->xdr_len; in encode_res()
1022 xdrmem_create(&xdrs, (caddr_t)((*results)->xdr_res), in encode_res()
1023 (*results)->xdr_len, XDR_ENCODE); in encode_res()
1025 (*results)->res_status = EINVAL; in encode_res()
1029 (*results)->res_status = 0; in encode_res()
/illumos-gate/usr/src/test/zfs-tests/doc/
H A DREADME20 3. Test results
64 to be written to the console only for tests that do not pass and the results
74 3. Test results
77 end of each test, and a results summary is printed at the end of the run. The
78 results summary includes the location of the complete logs, which is of the
/illumos-gate/usr/src/test/libc-tests/doc/
H A DREADME22 4. Test results
67 4. Test results
70 the end of each test, and a results summary is printed at the end of the run.
71 The results summary includes the location of the complete logs, which is of the
/illumos-gate/usr/src/test/zfs-tests/tests/functional/inheritance/
H A Dstate023.cfg34 # when each levels properties are set locally, results in the top level
37 # Executing 'zfs inherit' at the middle level results in it inheriting
40 # Executing 'zfs inherit' at the bottom level results in it inheriting
/illumos-gate/usr/src/test/libmlrpc-tests/doc/
H A DREADME21 3. Test results
72 3. Test results
75 the end of each test, and a results summary is printed at the end of the run.
76 The results summary includes the location of the complete logs, which is of the

123456