Home
last modified time | relevance | path

Searched refs:listpp (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfslog_config.c138 *listpp = global; in nfsl_getconfig_list()
320 if (*listpp == NULL) in getconfiglist()
321 *listpp = listp; in getconfiglist()
586 nfsl_config_t **listpp, in remove_config() argument
592 prev = *listpp; in remove_config()
645 if (*listpp == NULL) in nfsl_freeconfig_list()
650 free_config(*listpp); in nfsl_freeconfig_list()
651 *listpp = next; in nfsl_freeconfig_list()
652 } while (*listpp); in nfsl_freeconfig_list()
668 nfsl_config_t **listpp, in findconfig() argument
[all …]
H A Dnfslog_config.h90 extern int nfsl_getconfig_list(nfsl_config_t **listpp);
91 extern int nfsl_checkconfig_list(nfsl_config_t **listpp, boolean_t *);
92 extern void nfsl_freeconfig_list(nfsl_config_t **listpp);
/illumos-gate/usr/src/uts/i86pc/io/acpi/acpidev/
H A Dacpidev_drv.c1130 ASSERT(listpp != NULL); in acpidev_register_class()
1131 if (listpp == NULL || clsp == NULL) { in acpidev_register_class()
1158 while (*listpp) { in acpidev_register_class()
1159 listpp = &(*listpp)->acl_next; in acpidev_register_class()
1162 item->acl_next = *listpp; in acpidev_register_class()
1163 *listpp = item; in acpidev_register_class()
1181 ASSERT(listpp != NULL); in acpidev_unregister_class()
1189 for (temp = NULL; *listpp; listpp = &(*listpp)->acl_next) { in acpidev_unregister_class()
1190 if ((*listpp)->acl_class == clsp) { in acpidev_unregister_class()
1191 temp = *listpp; in acpidev_unregister_class()
[all …]
H A Dacpidev_util.c336 acpidev_class_list_t **listpp, acpidev_walk_info_t *pinfop) in acpidev_alloc_walk_info() argument
346 infop->awi_class_list = listpp; in acpidev_alloc_walk_info()
/illumos-gate/usr/src/lib/libnsl/netselect/
H A Dnetselect.c268 struct netconfig **listpp; /* the beginning of the netconfig list */ in getnetlist() local
290 if ((listpp = malloc((count + 1) * in getnetlist()
306 for (tpp = listpp; *tpp = fgetnetconfig(fp, NULL); tpp++) in getnetlist()
311 netlist_free(&listpp); in getnetlist()
312 return (listpp); in getnetlist()
666 char **listpp; /* the beginning of the list of dir routines */ in getlookups() local
673 if ((listpp = malloc((num + 1) * sizeof (char *))) == NULL) in getlookups()
676 tpp = listpp; in getlookups()
697 for (tpp = listpp; *tpp; tpp++) in getlookups()
699 free(listpp); in getlookups()
[all …]
/illumos-gate/usr/src/cmd/fs.d/nfs/nfslog/
H A Dbuffer_list.c57 getbuffer_list(struct buffer_ent **listpp, timestruc_t *lu) in getbuffer_list() argument
59 *listpp = NULL; in getbuffer_list()
60 return (buildbuffer_list(listpp, lu)); in getbuffer_list()
71 checkbuffer_list(struct buffer_ent **listpp, timestruc_t *lu) in checkbuffer_list() argument
90 free_buffer_list(listpp); /* free existing list first */ in checkbuffer_list()
91 return (buildbuffer_list(listpp, lu)); in checkbuffer_list()
/illumos-gate/usr/src/uts/common/ipp/ipgpc/
H A Dfilters.c1854 ipgpc_list_insert(linked_list *listpp, key_t id) in ipgpc_list_insert() argument
1858 if (*listpp == NULL) { in ipgpc_list_insert()
1860 (*listpp)->element_refcnt = 1; in ipgpc_list_insert()
1861 (*listpp)->next = NULL; in ipgpc_list_insert()
1862 (*listpp)->id = id; in ipgpc_list_insert()
1897 if (*listpp == NULL) { in ipgpc_list_remove()
1900 if ((*listpp)->id == id) { in ipgpc_list_remove()
1901 p = *listpp; in ipgpc_list_remove()
1902 if ((*listpp)->element_refcnt == 1) { in ipgpc_list_remove()
1903 *listpp = (*listpp)->next; in ipgpc_list_remove()
[all …]
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dacpidev.h372 extern ACPI_STATUS acpidev_register_class(acpidev_class_list_t **listpp,
385 extern ACPI_STATUS acpidev_unregister_class(acpidev_class_list_t **listpp,
445 int lvl, ACPI_HANDLE hdl, acpidev_class_list_t **listpp,
/illumos-gate/usr/src/uts/i86pc/io/
H A Dmp_platform_common.c1914 acpi_destroy_prs_irq_list(prs_irq_list_t **listpp) in acpi_destroy_prs_irq_list() argument
1918 ASSERT(listpp != NULL); in acpi_destroy_prs_irq_list()
1920 while (*listpp != NULL) { in acpi_destroy_prs_irq_list()
1921 nextp = (*listpp)->next; in acpi_destroy_prs_irq_list()
1922 kmem_free(*listpp, sizeof (struct prs_irq_list_ent)); in acpi_destroy_prs_irq_list()
1923 *listpp = nextp; in acpi_destroy_prs_irq_list()