Searched defs:listpp (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/nfs/nfslog/
H A Dbuffer_list.c55 * Builds the buffer list from NFSLOGTAB and returns it in *listpp.
59 getbuffer_list(struct buffer_ent **listpp, timestruc_t *lu) argument
61 *listpp = NULL;
62 return (buildbuffer_list(listpp, lu));
73 checkbuffer_list(struct buffer_ent **listpp, timestruc_t *lu) argument
92 free_buffer_list(listpp); /* free existing list first */
93 return (buildbuffer_list(listpp, lu));
/illumos-gate/usr/src/lib/libnsl/netselect/
H A Dnetselect.c270 struct netconfig **listpp; /* the beginning of the netconfig list */ local
292 if ((listpp = malloc((count + 1) *
308 for (tpp = listpp; *tpp = fgetnetconfig(fp, NULL); tpp++)
313 netlist_free(&listpp);
314 return (listpp);
668 char **listpp; /* the beginning of the list of dir routines */ local
675 if ((listpp = malloc((num + 1) * sizeof (char *))) == NULL)
678 tpp = listpp;
699 for (tpp = listpp; *tpp; tpp++)
701 free(listpp);
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfslog_config.c103 * If the configuration file does not exist, *listpp points to a config entry
107 nfsl_getconfig_list(nfsl_config_t **listpp) argument
138 *listpp = global;
144 if (error = getconfiglist(listpp, B_FALSE))
145 nfsl_freeconfig_list(listpp);
191 nfsl_checkconfig_list(nfsl_config_t **listpp, boolean_t *updated) argument
220 return (getconfiglist(listpp, B_TRUE));
225 * list of entries. Assumes that *listpp contains at least one entry.
229 * Returns 0 on success and updates the '*listpp' config list,
233 getconfiglist(nfsl_config_t **listpp, boolean_ argument
573 remove_config( nfsl_config_t **listpp, nfsl_config_t *config, nfsl_config_t **tail) argument
629 nfsl_freeconfig_list(nfsl_config_t **listpp) argument
655 findconfig( nfsl_config_t **listpp, char *tag, boolean_t remove, nfsl_config_t **tail) argument
[all...]
/illumos-gate/usr/src/uts/i86pc/io/acpi/acpidev/
H A Dacpidev_drv.c1109 acpidev_register_class(acpidev_class_list_t **listpp, acpidev_class_t *clsp, argument
1117 ASSERT(listpp != NULL);
1118 if (listpp == NULL || clsp == NULL) {
1134 for (temp = *listpp; temp != NULL; temp = temp->acl_next) {
1145 while (*listpp) {
1146 listpp = &(*listpp)->acl_next;
1149 item->acl_next = *listpp;
1150 *listpp = item;
1161 acpidev_unregister_class(acpidev_class_list_t **listpp, argument
[all...]
H A Dacpidev_util.c331 acpidev_class_list_t **listpp, acpidev_walk_info_t *pinfop)
341 infop->awi_class_list = listpp;
330 acpidev_alloc_walk_info(acpidev_op_type_t op_type, int lvl, ACPI_HANDLE hdl, acpidev_class_list_t **listpp, acpidev_walk_info_t *pinfop) argument
/illumos-gate/usr/src/uts/common/ipp/ipgpc/
H A Dfilters.c1849 * ipgpc_list_insert(listpp, id)
1854 ipgpc_list_insert(linked_list *listpp, key_t id) argument
1858 if (*listpp == NULL) {
1859 *listpp = kmem_cache_alloc(element_node_cache, KM_SLEEP);
1860 (*listpp)->element_refcnt = 1;
1861 (*listpp)->next = NULL;
1862 (*listpp)->id = id;
1864 for (p = *listpp; p->next != NULL; p = p->next) {
1886 * ipgpc_list_remove(listpp, id)
1892 ipgpc_list_remove(element_node_t **listpp, key_ argument
[all...]
/illumos-gate/usr/src/uts/i86pc/io/
H A Dmp_platform_common.c1840 * Frees the list passed in, deallocating all memory and leaving *listpp
1844 acpi_destroy_prs_irq_list(prs_irq_list_t **listpp) argument
1848 ASSERT(listpp != NULL);
1850 while (*listpp != NULL) {
1851 nextp = (*listpp)->next;
1852 kmem_free(*listpp, sizeof (struct prs_irq_list_ent));
1853 *listpp = nextp;

Completed in 86 milliseconds