Searched refs:entryp (Results 1 - 25 of 32) sorted by relevance

12

/illumos-gate/usr/src/lib/libbc/libc/gen/common/sparc/
H A Dremque.s36 * remque(entryp)
38 * Remove entryp from a doubly linked list
41 ld [%o0], %g1 ! entryp->forw
42 ld [%o0 + 4], %g2 ! entryp->back
43 st %g1, [%g2] ! entryp->back = entryp->forw
45 st %g2, [%g1 + 4] ! entryp->forw = entryp->back
H A Dinsque.s36 * insque(entryp, predp)
38 * Insert entryp after predp in a doubly linked list.
42 st %o1, [%o0 + 4] ! entryp->back = predp
43 st %g1, [%o0] ! entryp->forw = predp->forw
44 st %o0, [%o1] ! predp->forw = entryp
46 st %o0, [%g1 + 4] ! predp->forw->back = entryp
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_table_c.x53 typedef long entryp; /* specifies location of an entry within table */
56 entryp where;
93 % entryp pop();
97 % bool_t push( entryp );
224 % bool_t entry_exists_p( entryp i );
231 % entry_object_p first_entry( entryp * where );
235 % entry_object_p next_entry( entryp, entryp* );
238 % entry_object_p get_entry( entryp );
244 % entryp add_entr
[all...]
H A Ddb_index_entry_c.x42 % information 'entryp'
43 % entryp is location information.
54 %#include "db_table_c.h" /* contains definition of entryp */
58 %#include "db_table.h" /* contains definition of entryp */
68 entryp location;
85 % entryp location;
91 % db_index_entry( char* name, int nlen, entryp location );
95 % db_index_entry( unsigned long hval, item *, entryp, db_index_entry *n);
120 % db_index_entry* lookup( bool_t, unsigned long, item*, entryp ); //name entry
124 % db_index_entry* getnext( bool_t, unsigned long, item*, entryp );
[all...]
H A Ddb_mindex_c.x60 % entryp location;
64 % db_next_index_desc( entryp loc, struct db_next_index_desc *n )
154 % db_query * extract_index_values_from_record( entryp );
164 % db_status remove_aux( entryp );
166 %/* entry_object * get_record( entryp );*/
248 % db_status next( entryp, entryp *, entry_object ** );
260 % db_status first( entryp*, entry_object ** );
H A Ddb_index_c.x122 % db_status remove( item*, entryp );
130 % db_status add( item*, entryp );
H A Ddb_log_entry.cc37 extern void print_entry(entryp, entry_object *);
H A Ddb_index_entry.cc38 db_index_entry::db_index_entry(char* name, int nlen, entryp ep)
53 entryp ep, db_index_entry_p rest)
143 db_index_entry::getnext(bool_t casein, unsigned long hval, item *i, entryp l)
166 item *i, entryp recnum)
233 unsigned long hval, item *i, entryp recnum)
262 db_index_entry::replace(entryp ep)
279 unsigned long hval, item *i, entryp recnum)
H A Ddb_table.cc148 entryp
157 entryp found = head->where;
170 db_free_list::push(entryp tabloc)
405 enumIndex.ptr = (entryp *)am(myself, enumCount.flag *
406 sizeof (entryp));
505 db_table::first_entry(entryp * where)
512 entryp i;
530 db_table::next_entry(entryp prev, entryp* newentry)
549 db_table::get_entry(entryp wher
[all...]
H A Ddb_index.cc228 db_index::remove(item* index_value, entryp recnum)
268 db_index::add(item* index_value, entryp recnum)
H A Ddb.cc54 void* next_value; /* linear: entryp; */
108 assign_next_desc(db_next_desc* desc, entryp value)
140 static entryp
144 entryp place;
153 place = (entryp)
173 entryp where, prev;
H A Ddb_mindex.cc366 db_mindex::extract_index_values_from_record(entryp recnum)
427 db_mindex::first(entryp *where, entry_object ** answer)
473 db_mindex::next(entryp previous, entryp *where, entry_object **answer)
654 entryp where;
739 db_mindex::remove_aux(entryp recloc)
957 entryp recloc = table->add_entry(obj, initialLoad.flag);
/illumos-gate/usr/src/uts/intel/io/agpgart/
H A Dagpgart.c1223 * entryp new entity data pointer
1227 * entryp the new entity slot pointer
1230 agp_fill_empty_keyent(agpgart_softstate_t *softstate, keytable_ent_t *entryp) argument
1236 ASSERT(entryp);
1237 ASSERT(entryp->kte_memhdl);
1238 ASSERT(entryp->kte_pfnarray);
1255 bcopy(entryp, newentryp, sizeof (keytable_ent_t));
1281 keytable_ent_t *entryp; local
1287 entryp = &softstate->asoft_table[keycount];
1288 if (entryp
1324 agp_check_off(keytable_ent_t *entryp, uint32_t pg_start, uint32_t pg_num) argument
1401 uint32_t *entryp; local
1429 agp_unbind_key(agpgart_softstate_t *softstate, keytable_ent_t *entryp) argument
1493 agp_dealloc_kmem(keytable_ent_t *entryp) argument
1529 agp_dealloc_mem(agpgart_softstate_t *st, keytable_ent_t *entryp) argument
2033 keytable_ent_t *entryp; local
2345 uint32_t *entryp; local
2949 keytable_ent_t *entryp; local
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/solaris/
H A Dnsc_thread.c102 * Insert entryp after predp in a doubly linked list.
105 nst_insque(nst_q_t *entryp, nst_q_t *predp) argument
107 entryp->q_back = predp;
108 entryp->q_forw = predp->q_forw;
109 predp->q_forw = entryp;
110 entryp->q_forw->q_back = entryp;
120 * Remove entryp from a doubly linked list.
123 nst_remque(nst_q_t *entryp) argument
125 entryp
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_sec.c360 nfs_get_qop_name(seconfig_t *entryp) argument
379 if (strcmp(secname, entryp->sc_name) == 0) {
386 if (atoi(tok) != entryp->sc_nfsnum)
706 rpc_gss_service_t service, seconfig_t *entryp)
724 if (matchname(line, name, entryp)) {
730 if (matchnum(line, num, entryp)) {
747 (void) get_rpcnum(entryp);
758 nfs_getseconfig_byname(char *secmode_name, seconfig_t *entryp) argument
760 if (!entryp)
764 entryp));
705 get_seconfig(int whichway, char *name, int num, rpc_gss_service_t service, seconfig_t *entryp) argument
774 nfs_getseconfig_bynumber(int nfs_secnum, seconfig_t *entryp) argument
[all...]
/illumos-gate/usr/src/cmd/mdb/sparc/kmdb/kctl/
H A Dkctl_isadep.c76 uint32_t *entryp = tl ? &kmdb_trap_tl1 : &kmdb_trap; local
82 *savp = *entryp;
85 kctl_patch_text((caddr_t)(entryp + 1), inst);
88 kctl_patch_text((caddr_t)entryp, inst);
/illumos-gate/usr/src/cmd/rpcsvc/
H A Drusers.c243 struct entry *entryp, *lim; local
282 for (entryp = entry; entryp < lim; entryp++) {
283 if (strcmp(entryp->machine, host) == 0)
369 struct entry *entryp, *lim; local
409 for (entryp = entry; entryp < lim; entryp++) {
410 if (strcmp(entryp
[all...]
H A Drup.c315 register struct entry *entryp, *lim; local
343 for (entryp = entry; entryp < lim; entryp++)
344 if (netbufeq(&taddr->addr, entryp->addr))
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_asru.c1385 fmd_asru_set_on_proxy_t *entryp = (fmd_asru_set_on_proxy_t *)arg; local
1387 if (*entryp->fasp_countp >= entryp->fasp_maxcount)
1397 if (entryp->fasp_proxy_external) {
1402 if (entryp->fasp_proxy_rdonly)
1408 if (entryp->fasp_proxy_asru[*entryp->fasp_countp]) {
1412 (*entryp->fasp_countp)++;
1431 fmd_asru_update_status_t *entryp = (fmd_asru_update_status_t *)arg; local
1434 if (*entryp
1494 fmd_asru_close_status_t *entryp = (fmd_asru_close_status_t *)arg; local
[all...]
H A Dfmd_case.c315 fmd_case_lst_t *entryp = (fmd_case_lst_t *)arg; local
319 if (*entryp->fcl_countp >= entryp->fcl_maxcount)
323 *entryp->fcl_msgp = B_FALSE;
324 entryp->fcl_ba[*entryp->fcl_countp] = 0;
327 entryp->fcl_ba[*entryp->fcl_countp] |= FM_SUSPECT_DEGRADED;
329 entryp->fcl_ba[*entryp
[all...]
/illumos-gate/usr/src/lib/libdhcputil/common/
H A Ddhcp_symbol.c368 dsym_cat_t *entryp = NULL; local
385 entryp = &cats[i];
390 if (entryp != NULL) {
396 const char *ptr = cat + entryp->dc_minlen;
397 if (entryp->dc_id == DSYM_VENDOR) {
414 *entry = entryp;
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Dfilesys_rcm.c820 free_entry(hashentry_t **entryp) argument
822 if (entryp) {
823 if (*entryp) {
824 if ((*entryp)->special)
825 free((*entryp)->special);
826 if ((*entryp)->fstype)
827 free((*entryp)->fstype);
828 free_list((*entryp)->mountps);
829 free(*entryp);
831 *entryp
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/lock/
H A Dlock_deadlock.c202 u_int32_t *bitmap, count, *entryp, i, id, nentries, *tmpmap; local
334 entryp = bitmap + (nentries * lockerp->dd_id);
335 OR_MAP(entryp, tmpmap, nentries);
344 CLR_MAP(entryp, lockerp->dd_id);
/illumos-gate/usr/src/cmd/setfacl/
H A Dsetfacl.c405 convert_to_aclent_t(char *entryp, int *cntp, aclent_t **aclpp, int mode) argument
414 if (entryp == NULL)
429 if (entryp[0] == 'u')
431 if (entryp[0] == 'g')
435 if (parse_entry(entryp, &tmpacl, mode) == -1)
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm.c6147 devlinktab_list_t *entryp; local
6236 entryp =
6239 entryp->line_number = devlinktab_line;
6241 if ((entryp->selector = create_selector_list(selector))
6243 free(entryp);
6246 entryp->selector_pattern = s_strdup(selector);
6248 if ((entryp->p_link = create_link_list(p_link)) == NULL) {
6249 free_selector_list(entryp->selector);
6250 free(entryp->selector_pattern);
6251 free(entryp);
[all...]

Completed in 742 milliseconds

12