Searched defs:entry (Results 26 - 50 of 488) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_ring_buffer_util.c186 * Add an entry to the ring buffer
190 * entry entry to add
203 IN void *entry)
210 rbuf->base[pos] = entry;
224 * Remove an entry from the ring buffer
230 * entry entry removed from the ring buffer
233 * a pointer to a buffer entry
201 dapls_rbuf_add( IN DAPL_RING_BUFFER *rbuf, IN void *entry) argument
/illumos-gate/usr/src/uts/common/io/ib/clients/of/sol_ofs/
H A Dsol_ofs_gen_util.c47 * Adds the entry to the tail of the list.
77 * delete_genlist() - delete the specified entry from the list.
79 void delete_genlist(genlist_t *list, genlist_entry_t *entry) { argument
81 ASSERT(entry);
83 if (entry->prev) {
84 entry->prev->next = entry->next;
86 list->head = entry->next;
89 if (entry->next) {
90 entry
106 genlist_entry_t *entry = list->head; local
124 genlist_entry_t *entry; local
146 insert_genlist_tail(genlist_t *list, genlist_entry_t *entry) argument
[all...]
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dsearch.h54 typedef struct entry { struct
/illumos-gate/usr/src/uts/common/io/mr_sas/
H A Dmr_sas_list.c20 * Insert a new entry between two known consecutive entries.
36 * mlist_add - add a new entry
37 * @new: new entry to be added
40 * Insert a new entry after the specified head.
50 * mlist_add_tail - add a new entry
51 * @new: new entry to be added
54 * Insert a new entry before the specified head.
64 * Delete a list entry by making the prev/next entries
78 * mlist_del_init - deletes entry from list and reinitialize it.
79 * @entry
82 mlist_del_init(struct mlist_head *entry) argument
[all...]
/illumos-gate/usr/src/tools/onbld/Checks/
H A DSpellCheck.py256 entry = (regex, misspelling, correct) variable
257 misspellingREs.append(entry)
261 entry = (regex, alternate, correct) variable
262 alternateREs.append(entry)
264 def check(errmsg, output, filename, line, lineno, entry):
265 if entry[0].search(line):
266 output.write(errmsg % (filename, lineno, entry[1], entry[2]))
280 for entry in misspellingREs:
282 lineno, entry)
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/arch/i386/
H A Delf32_freebsd.c67 vm_offset_t entry, bootinfop, modulep, kernend; local
77 entry = ehdr->e_entry & 0xffffff;
79 printf("Start @ 0x%lx ...\n", entry);
84 __exec((void *)entry, boothowto, bootdev, 0, 0, 0, bootinfop, modulep, kernend);
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Delf32_freebsd.c58 vm_offset_t entry, bootinfop, modulep, kernend; local
68 entry = ehdr->e_entry & 0xffffff;
71 printf("Start @ 0x%lx ...\n", entry);
75 __exec((void *)entry, boothowto, bootdev, 0, 0, 0, bootinfop, modulep, kernend);
/illumos-gate/usr/src/boot/sys/boot/ofw/libofw/
H A Delf_freebsd.c73 intptr_t entry; local
79 entry = e->e_entry;
84 printf("Kernel entry at 0x%lx ...\n", e->e_entry);
90 ((int (*)(u_long, u_long, u_long, void *, u_long))entry)(dtbp, 0, 0,
93 OF_chain((void *)reloc, end - (char *)reloc, (void *)entry,
H A Dppc64_elf_freebsd.c73 intptr_t entry; local
82 entry = e->e_entry;
84 entry = *(uint64_t *)e->e_entry;
89 printf("Kernel entry at 0x%lx ...\n", entry);
96 ((int (*)(u_long, u_long, u_long, void *, u_long))entry)(dtbp, 0, 0,
99 OF_chain((void *)reloc, end - (char *)reloc, (void *)entry,
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/keytab/
H A Dktfns.c55 krb5_enctype enctype, krb5_keytab_entry *entry)
71 entry));
86 krb5_keytab_entry *entry, krb5_kt_cursor *cursor)
88 return krb5_x((keytab)->ops->get_next,(context, keytab, entry, cursor));
53 krb5_kt_get_entry(krb5_context context, krb5_keytab keytab, krb5_const_principal principal, krb5_kvno vno, krb5_enctype enctype, krb5_keytab_entry *entry) argument
85 krb5_kt_next_entry(krb5_context context, krb5_keytab keytab, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
/illumos-gate/usr/src/lib/libshare/common/
H A Dscfutil.h47 scf_transaction_entry_t *entry; member in struct:scfutilhandle
/illumos-gate/usr/src/cmd/cmd-crypto/kmfcfg/
H A Duninstall.c49 conf_entry_t *entry = NULL; local
107 entry = get_keystore_entry(keystore_name);
108 if (entry == NULL) {
/illumos-gate/usr/src/cmd/sh/
H A Dhash.h57 typedef struct entry struct
63 struct entry *next;
/illumos-gate/usr/src/cmd/svc/startd/
H A Ddict.c41 * id. To implement dictionary entry delete, the locking strategy for graph
74 dict_entry_t *entry, tmp; local
80 if ((entry = uu_list_find(dictionary->dict_list, &tmp, NULL,
84 id = entry->de_id;
101 dict_entry_t *entry, tmp; local
110 if ((entry = uu_list_find(dictionary->dict_list, &tmp, NULL,
113 return (entry->de_id);
116 entry = startd_alloc(sizeof (dict_entry_t));
118 entry->de_id = dictionary->dict_new_id++;
119 entry
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/installf/
H A Ddofinal.c59 struct cfextra entry; local
63 entry.cf_ent.pinfo = NULL;
64 entry.fsys_value = BADFSYS;
65 entry.fsys_base = BADFSYS;
76 while (n = srchcfile(&(entry.cf_ent), "*", server)) {
79 progerr(gettext("bad entry read in contents file"));
81 (entry.cf_ent.path && *(entry.cf_ent.path)) ?
82 entry.cf_ent.path : "Unknown");
87 save_path = check_db_entry(vfpo, &entry, rmfla
103 check_db_entry(VFP_T *vfpo, struct cfextra *entry, int rmflag, char *myclass, int *dbchg) argument
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Disreloc.c51 static int has_rel_path(char *entry);
52 static int is_relative(char *entry);
135 has_rel_path(char *entry) argument
140 if (*entry == NULL || strchr(IGNORE_START, *entry))
143 /* Skip past this data entry if it is volume number. */
144 if (isdigit(*entry)) {
145 while (*entry && !isspace(*entry)) {
146 entry
193 is_relative(char *entry) argument
[all...]
/illumos-gate/usr/src/uts/common/io/drm/
H A Dati_pcigart.c47 drm_sg_mem_t *entry; local
54 entry = dev->sg;
55 if (entry == NULL) {
62 entry->dmah_gart = drm_pci_alloc(dev, ATI_PCIGART_TABLE_SIZE, 0,
64 if (entry->dmah_gart == NULL) {
68 gart_info->addr = (void *)entry->dmah_gart->vaddr;
69 gart_info->bus_addr = entry->dmah_gart->paddr;
70 pci_gart = (u32 *)entry->dmah_gart->vaddr;
76 pages = DRM_MIN(entry->pages, ATI_MAX_PCIGART_PAGES);
81 dmah = entry
[all...]
H A Ddrm_auth.c72 drm_magic_entry_t *entry; local
75 entry = drm_alloc(sizeof (*entry), DRM_MEM_MAGIC);
76 if (!entry)
78 entry->magic = magic;
79 entry->priv = priv;
80 entry->next = NULL;
84 dev->magiclist[hash].tail->next = entry;
85 dev->magiclist[hash].tail = entry;
87 dev->magiclist[hash].head = entry;
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Discsi_targetparam.c73 * Creates a target param entry and adds it to the target param
74 * entry list.
107 * Returns a target param entry's oid given the target name. If the target
108 * param entry cannot be found one is created and the new oid is returned.
137 * Returns a target param entry's target name given its oid. If the oid cannot
159 * Removes a target param entry from the target param entry list. The
160 * oid is used to lookup the entry to be removed.
201 * Returns the next element in the target param entry list. If
202 * NULL is passed as the reference entry the
209 iscsi_targetparam_entry_t *entry; local
[all...]
/illumos-gate/usr/src/lib/krb5/ss/
H A Dlist_rqs.c43 register ss_request_entry *entry; local
94 entry = (*table)->requests;
95 for (; entry->command_names; entry++) {
98 if (entry->flags & SS_OPT_DONT_LIST)
101 for (name = entry->command_names; *name; name++) {
123 strncat(buffer, entry->info_string, sizeof(buffer) -1 - strlen(buffer));
/illumos-gate/usr/src/cmd/mandoc/
H A Dtag.c127 struct tag_entry *entry; local
134 entry = ohash_find(&tag_data, slot);
135 if (entry == NULL) {
137 entry = mandoc_malloc(sizeof(*entry) + len);
138 memcpy(entry->s, s, len);
139 ohash_insert(&tag_data, slot, entry);
140 } else if (entry->prio <= prio)
142 entry->line = line;
143 entry
154 struct tag_entry *entry; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Dhandles.c33 struct entry { struct
41 struct entry *entry; variable in typeref:struct:entry
53 sz = nentries * sizeof(struct entry);
54 entry = (entry == NULL) ? malloc(sz) : realloc(entry, sz);
56 entry[idx].handle = handles[unit];
58 entry[idx].alias = aliases[unit];
60 entry[id
[all...]
/illumos-gate/usr/src/boot/sys/boot/userboot/userboot/
H A Delf32_freebsd.c61 vm_offset_t entry, bootinfop, modulep, kernend; local
73 entry = ehdr->e_entry & 0xffffff;
76 printf("Start @ 0x%lx ...\n", entry);
105 CALLBACK(exec, entry);
/illumos-gate/usr/src/lib/nsswitch/user/common/
H A Dgetprinter.c41 _nss_user_printers_convert(char *entry, nss_XbyY_args_t *args) argument
44 char *namelist = entry;
49 if ((value = strpbrk(entry, "\t ")) != NULL) {
/illumos-gate/usr/src/lib/print/libprint/common/
H A Dnss_convert.c139 _cvt_nss_entry_to_printer(char *entry, char *ns) argument
149 if (entry == NULL)
153 for (cp = entry; *cp != NULL; cp++) {

Completed in 117 milliseconds

1234567891011>>