/osnet-11/usr/src/lib/fm/libfmd_snmp/common/ |
H A D | init.c | 53 const sunFm_table_t *table; local 55 for (table = sun_fm_tables; table->t_name != NULL; table++) { 56 int err = table->t_init(); 60 DEBUGMSGTL((MODNAME_STR, "registered table %s\n", 61 table->t_name)); 65 ": table %s initialization failed: duplicate " 66 "registration\n", table->t_name); 70 ": table [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/efiemu/i386/pc/ |
H A D | cfgtables.c | 30 void *table; local 46 table = grub_acpi_get_rsdpv1 (); 47 if (table) 49 err = grub_efiemu_register_configuration_table (acpi, 0, 0, table); 53 table = grub_acpi_get_rsdpv2 (); 54 if (table) 56 err = grub_efiemu_register_configuration_table (acpi20, 0, 0, table);
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/et/ |
H A D | error_table.h | 18 /*@dependent@*//*@null@*/ const struct error_table *table; member in struct:et_list 23 /*@dependent@*/ const struct error_table *table; member in struct:dynamic_et_list 26 #define ERRCODE_RANGE 8 /* # of bits to shift table number */ 28 #define ERRCODE_MAX 0xFFFFFFFFUL /* Mask for maximum error table */
|
/osnet-11/usr/src/lib/krb5/ss/ |
H A D | invocation.c | 26 register ss_data **table; local 29 table = _ss_table; 32 if (table == (ss_data **) NULL) { 33 table = (ss_data **) malloc(2 * size); 34 table[0] = table[1] = (ss_data *)NULL; 37 for (sci_idx = 1; table[sci_idx] != (ss_data *)NULL; sci_idx++) 39 table = (ss_data **) realloc((char *)table, 41 table[sci_id [all...] |
H A D | list_rqs.c | 44 register ss_request_table **table; local 97 for (table = ss_info(sci_idx)->rqt_tables; *table; table++) { 98 entry = (*table)->requests;
|
H A D | listen.c | 66 ss_request_table **table; local 73 for (table = info->rqt_tables; *table; table++) { 74 for (request = (*table)->requests;
|
/osnet-11/usr/src/lib/libast/common/string/ |
H A D | fmtint.c | 30 static const char table[]= variable 111 memcpy(buff+k,table+3*m,3);
|
/osnet-11/usr/src/lib/pyzfs/common/ |
H A D | holds.py | 33 import zfs.table namespace 63 t = zfs.table.Table(fields, rjustfields)
|
H A D | userspace.py | 36 import zfs.table namespace 242 t = zfs.table.Table(options.fields, rjustfields)
|
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ActiveDiscoverer.java | 43 * entered into the DA table. 64 private ServerDATable table = null; field in class:ActiveDiscoverer 77 ServerDATable table, 83 this.table = table; 198 table.recordNewDA(url, 250 table); 262 // Add preconfigured DAs to the DA table. Note that we poll the 330 table.recordNewDA(advert.URL, 76 ActiveDiscoverer(int version, ServerDATable table, Vector useScopes, InetAddress address) argument
|
H A D | SLPV1Manager.java | 85 // Service table. 87 private ServiceTable table = null; field in class:SLPV1Manager.SLPV1Advertiser 98 ServiceTable table) 102 this.table = table; 154 daadvert = (SDAAdvert)table.makeDAAdvert(hdr, 198 start(SLPConfig config, ServerDATable table, ServiceTable stable) { argument 96 SLPV1Advertiser(InetAddress interfac, InetAddress maddr, ServiceTable table) argument
|
H A D | ServiceTable.java | 44 * that any exceptions internal to the service table are processed 56 private static final String locationMsg = "Service table"; 75 static protected ServiceTable table = null; field in class:ServiceTable 114 * @return The distinguished table object. 125 if (table == null) { 127 table = createServiceTable(); 131 return table; 135 * Return a service table object. 137 * @return The service table object. 143 ServiceTable table [all...] |
/osnet-11/usr/src/lib/libparted/common/libparted/fs/fat/ |
H A D | table.h | 28 void* table; member in struct:_FatTable
|
/osnet-11/usr/src/grub/grub2/grub-core/commands/efi/ |
H A D | lssal.c | 31 disp_sal (void *table) argument 33 struct grub_efi_sal_system_table *t = table; 159 "Display SAL system table.");
|
/osnet-11/usr/src/lib/libldap4/include/ |
H A D | hsearch.h | 12 typedef struct { /* Hash table entry */ 32 /* define everything that a hash table needs to drag around */ 34 NODE **table; /* The address of the hash table */ member in struct:hash_table 35 unsigned int length; /* Size of the hash table */ 37 unsigned int count; /* nb entries in the hash table */ 39 int alloc_data; /* true if data is allocated and copied in the hast table */ 40 int clean; /* to force cleanup of the hash table */ 41 int size; /* Max size of the hast table, defaulted 5000 */
|
/osnet-11/usr/src/lib/libdisasm/sparc/ |
H A D | dis_sparc.h | 77 typedef struct table { struct
|
/osnet-11/usr/src/grub/grub2/grub-core/commands/ |
H A D | acpihalt.c | 159 get_sleep_type (grub_uint8_t *table, grub_uint8_t *end) argument 161 grub_uint8_t *ptr, *prev = table; 164 ptr = table + sizeof (struct grub_acpi_table_header); 170 grub_dprintf ("acpi", "Tell %x\n", (unsigned) (ptr - table));
|
/osnet-11/usr/src/lib/cfgadm_plugins/ib/common/ |
H A D | cfga_rcm.c | 33 #define MAX_FORMAT 80 /* for info table */ 93 DPRINTF("ib_rcm_offline: table = %s\n", *errstring); 243 * table - table to be printed 250 * and appends the rcm_info_t data in the form of a table to the 254 ib_rcm_info_table(rcm_info_t *rinfo, char **table) argument 273 if (rinfo == NULL || table == NULL) { 277 /* Set localized table header strings */ 317 /* Allocate space for the table */ 319 if (*table [all...] |
/osnet-11/usr/src/lib/cfgadm_plugins/sata/common/ |
H A D | cfga_rcm.c | 33 #define MAX_FORMAT 80 /* for info table */ 182 * and appends the rcm_info_t data in the form of a table to the 186 sata_rcm_info_table(rcm_info_t *rinfo, char **table) argument 203 if (rinfo == NULL || table == NULL) { 207 /* Set localized table header strings */ 248 /* Allocate space for the table */ 250 if (*table == NULL) { 252 *table = calloc(table_size, sizeof (char)); 253 if (*table == NULL) { 257 newtable = realloc(*table, strle [all...] |
/osnet-11/usr/src/lib/cfgadm_plugins/scsi/common/ |
H A D | cfga_rcm.c | 250 * the rcm_info_t data in the form of a table to the given character pointer. 253 scsi_rcm_info_table(rcm_info_t *rinfo, char **table) argument 270 if (rinfo == NULL || table == NULL) 273 /* Set localized table header strings */ 308 /* Allocate space for the table */ 310 if (*table == NULL) { 312 *table = calloc(table_size, sizeof (char)); 313 if (*table == NULL) 316 newtable = realloc(*table, strlen(*table) [all...] |
/osnet-11/usr/src/lib/cfgadm_plugins/usb/common/ |
H A D | cfga_rcm.c | 33 #define MAX_FORMAT 80 /* for info table */ 83 DPRINTF("usb_rcm_offline: table = %s\n", *errstring); 202 * and appends the rcm_info_t data in the form of a table to the 206 usb_rcm_info_table(rcm_info_t *rinfo, char **table) argument 225 if (rinfo == NULL || table == NULL) { 229 /* Set localized table header strings */ 270 /* Allocate space for the table */ 272 if (*table == NULL) { 274 *table = calloc(table_size, sizeof (char)); 275 if (*table [all...] |
/osnet-11/usr/src/lib/libshell/common/sh/ |
H A D | string.c | 50 * <table> is searched for string <sp> and corresponding value is returned 54 const Shtable_t *sh_locate(register const char *sp,const Shtable_t *table,int size) argument 62 tp=table;
|
/osnet-11/usr/src/lib/libnisdb/ |
H A D | db_index.cc | 75 /* Get rid of table and all associated entries, and reset counters */ 83 /* Add sanity test in case table was corrupted */ 85 for (i = 0; i < table_size; i++) { // go through table 95 delete tab; // get rid of table itself 116 /* Returns the next size to use for the hash table */ 139 * Old table is deleted after the relocation. 158 "wu db_index::grow: table size exceeds calloc limit"); 159 FATAL("db_index::grow: table size exceeds calloc limit", 166 tab = oldtab; // restore previous table info 190 db_table *table, bool_ 189 lookup(item *index_value, long *how_many_found, db_table *table, bool_t checkTTL) argument [all...] |
H A D | nis_hashitem.c | 47 * The hash table routines below implement nested (or recursive) 63 __nis_init_hash_table(__nis_hash_table_mt *table, argument 68 if (table != 0) { 69 errorcode = pthread_mutex_init(&table->lock, 0); 72 "(table->lock) pthread_mutex_init returned %d (%s)", 76 errorcode = pthread_cond_init(&table->cond, 0); 79 "(table->cond) pthread_cond_init returned %d (%s)", 83 errorcode = pthread_mutex_init(&table->traverser_id_lock, 0); 86 "(table->traverser_id_lock) " 91 table 100 __nis_lock_hash_table(__nis_hash_table_mt *table, int traverse, char *msg) argument 174 __nis_ulock_hash_table(__nis_hash_table_mt *table, int traverse, char *msg) argument 232 __find_item_mt(nis_name name, __nis_hash_table_mt *table, int *keyp) argument 269 __nis_insert_item_mt(void *arg, __nis_hash_table_mt *table, int readwrite) argument 312 __nis_insert_name_mt(nis_name name, __nis_hash_table_mt *table) argument 347 __nis_find_item_mt(nis_name name, __nis_hash_table_mt *table, int readwrite, int *trylock) argument 407 __nis_pop_item_mt(__nis_hash_table_mt *table) argument 500 __nis_remove_item_mt(nis_name name, __nis_hash_table_mt *table) argument 581 __nis_release_item(void *arg, __nis_hash_table_mt *table, int readwrite) argument 673 __nis_scan_table_mt( __nis_hash_table_mt *table, bool_t (*func)(__nis_hash_item_mt *, void *), void *funcarg) argument [all...] |
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/ |
H A D | cache.h | 51 #define CR_OVER_DIV 16 /* alloc a table for (1+1/CR_OVER_DIV) * 54 #define CR_NEW_ALLOC_DIV 4 /* divide the size of the first alloc table 74 HfsCPrivateExtent* table; member in struct:_HfsCPrivateCacheTable
|