Searched defs:protocols (Results 1 - 6 of 6) sorted by relevance
/illumos-gate/usr/src/boot/sys/boot/efi/loader/ |
H A D | main.c | 873 EFI_GUID **protocols = NULL; local 881 status = BS->ProtocolsPerHandle(handle, &protocols, &nproto); 890 if (memcmp(protocols[j], &proto_names[k].guid, 896 printf(" %s", guid_to_string(protocols[j])); 901 BS->FreePool(protocols);
|
/illumos-gate/usr/src/lib/libipadm/common/ |
H A D | ipadm_prop.c | 29 * both IP interface and protocols in `ipadm_prop_desc_t'. Following protocols 83 /* array of protocols we support */ 84 static int protocols[] = { MOD_PROTO_IP, MOD_PROTO_RAWIP, variable 1531 int count = A_CNT(protocols); 1559 pdtbl = i_ipadm_get_propdesc_table(protocols[i]); 1560 i_ipadm_walk_proptbl(pdtbl, protocols[i], class, func,
|
/illumos-gate/usr/src/cmd/ipf/tools/ |
H A D | ipmon.c | 176 static char **protocols = NULL; variable 410 if (protocols != NULL) { 412 if (protocols[i] != NULL) { 413 free(protocols[i]); 414 protocols[i] = NULL; 416 free(protocols); 417 protocols = NULL; 419 protocols = (char **)malloc(256 * sizeof(*protocols)); 420 if (protocols ! [all...] |
/illumos-gate/usr/src/lib/libshare/common/ |
H A D | libsharecore.c | 345 /* if proto is NULL, remove all protocols */ 1584 char **protocols = NULL; local 1592 numproto = sa_get_protocols(&protocols); 1595 (sa_handle_t)ihandle, protocols[i]); 1596 if (protocols != NULL) 1597 free(protocols);
|
H A D | libshare.c | 205 ret = dgettext(TEXT_DOMAIN, "errors from multiple protocols"); 796 * Make sure a "default" group exists and has default protocols enabled. 1079 * Get array of protocols that are supported 1088 sa_get_protocols(char ***protocols) argument 1092 if (protocols != NULL) { 1099 *protocols = calloc(numproto + 1, sizeof (char *)); 1100 if (*protocols != NULL) { 1105 (*protocols)[ret++] = 1375 * we may want to use the group to then check against the protocols 1397 * Walk through all the protocols enable [all...] |
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | main.c | 273 struct protent *protocols[] = { variable in typeref:struct:protent 344 * Initialize magic number generator now so that protocols may 357 for (i = 0; (protp = protocols[i]) != NULL; ++i) { 436 for (i = 0; (protp = protocols[i]) != NULL; ++i) 1430 * discard non-authentication protocols if we're not yet 1450 for (i = 0; (protp = protocols[i]) != NULL; ++i) { 2576 for (i = 0; (protp = protocols[i]) != NULL; ++i) {
|
Completed in 266 milliseconds