Searched defs:entry (Results 126 - 150 of 488) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libndmp/common/
H A Dlibndmp_prop.c411 scf_transaction_entry_t *entry = NULL; local
417 if ((entry = scf_entry_create(handle->scf_handle)) != NULL) {
418 if (scf_transaction_property_delete(handle->scf_trans, entry,
420 scf_entry_destroy(entry);
430 scf_entry_destroy(entry);
446 scf_transaction_entry_t *entry = NULL; local
457 ((entry = scf_entry_create(handle->scf_handle)) == NULL) ||
466 if ((scf_transaction_property_change(handle->scf_trans, entry, propname,
468 (scf_transaction_property_new(handle->scf_trans, entry, propname,
493 if (scf_entry_add_value(entry, valu
[all...]
/illumos-gate/usr/src/lib/librdc/common/
H A Drdcpersist.c565 replace_entry(int offset, char *entry) argument
572 * value contained in entry.
577 replace_cfgfield(rdcconfig_t *rdc, char *field, char *entry) argument
594 if (!entry || strlen(entry) == 0)
597 strncpy(newentry, entry, CFG_MAX_BUF);
/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A D_open.c346 struct dirent *entry; local
354 while ((entry = readdir(printerDir)) != NULL)
355 if (entry->d_name[0] != '.')
356 getPrinterInfo(entry->d_name, fd);
/illumos-gate/usr/src/lib/libbsm/
H A Dauditxml.pm39 my @kid = $obj->getKids(); # kids of event are entry or allowed_types
44 my %entry = ();
45 my @entry = ();
55 if ($class eq 'entry') {
71 $entry{$kidId} = [$external, $kid, $tokenId, $format, $comment];
72 push (@entry, $kidId);
90 my @entryCopy = @entry;
94 'entry' => \%entry,
95 'entryList' => \@entry,
738 sub entry { subroutine
[all...]
/illumos-gate/usr/src/lib/libc/inc/
H A Dmsgfmt.h410 struct gnu_dynamic_ent entry[1]; member in struct:gnu_dynamic_tbl
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetut.c95 static struct futmp fubuf; /* Copy of last entry read in. */
96 static struct utmp ubuf; /* Last entry returned to client */
135 * "getutent_frec" gets the raw version of the next entry in the utmp file.
159 /* Try to read in the next entry from the utmp file. */
166 /* Save the location in the file where this entry was found. */
173 * "_compat_getutent" gets the next entry in the utmp file.
188 * "_compat_getutid" finds the specified entry in the utmp file. If
192 _compat_getutid(const struct utmp *entry) argument
199 * Start looking for entry. Look in our current buffer before
204 * If there is no entry i
273 _compat_getutline(const struct utmp *entry) argument
303 _compat_pututline(const struct utmp *entry) argument
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dcharset.c60 ldap_enable_translation( LDAP *ld, LDAPMessage *entry, int enable ) argument
71 optionsp = ( entry == NULLMSG ) ? &ld->ld_lberoptions :
72 &entry->lm_ber->ber_options;
113 * On entry: bufp points to a "string" to be converted (not necessarily
H A Dgetvalues.c42 internal_ldap_get_values( LDAP *ld, LDAPMessage *entry, const char *target, argument
56 !NSLDAPI_VALID_LDAPMESSAGE_ENTRY_POINTER( entry )) {
61 ber = *entry->lm_ber;
330 internal_ldap_get_lang_values( LDAP *ld, LDAPMessage *entry, argument
353 !NSLDAPI_VALID_LDAPMESSAGE_ENTRY_POINTER( entry )) {
367 vals = internal_ldap_get_values( ld, entry, target, lencall );
381 ber = *entry->lm_ber;
383 /* Process all attributes in the entry */
448 ldap_get_values( LDAP *ld, LDAPMessage *entry, const char *target ) argument
450 return( (char **) internal_ldap_get_values( ld, entry, targe
455 ldap_get_values_len( LDAP *ld, LDAPMessage *entry, const char *target ) argument
463 ldap_get_lang_values( LDAP *ld, LDAPMessage *entry, const char *target, char **type ) argument
472 ldap_get_lang_values_len( LDAP *ld, LDAPMessage *entry, const char *target, char **type ) argument
[all...]
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dpci_io.c112 unsigned long entry; /* %edx */ local
125 "=d" (entry)
133 return address + entry;
347 " entry at %#X\n", major_revision,
390 if (check->fields.entry >= 0x100000) {
391 printf("pcibios_init: entry in high "
395 bios32_entry = check->fields.entry;
398 " entry at %#X\n", bios32_entry);
/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_dbimpl.c51 * This structure defines an instance of the hash entry
52 * which implements the nscd database entry. The
77 nscd_hash_t *hash; /* the current hash entry */
112 * Scan a hash table for a matching hash entry. Assume 'str' is
158 * Find a nscd database entry from a nscd database.
185 * Add a nscd database entry to a nscd database. This function
193 nscd_db_entry_t *entry,
221 if (db_entry->type != entry->type)
226 if (db_entry->id_num == entry->id_num) {
235 if (db_entry->type != entry
190 _nscd_add_db_entry( nscd_db_t *db, const char *str, nscd_db_entry_t *entry, nscd_db_option_t option) argument
[all...]
/illumos-gate/usr/src/cmd/rm/
H A Drm.c241 opendirat(int dirfd, const char *entry, struct dlist *frm) argument
248 while ((fd = openat(dirfd, entry, O_RDONLY|O_NONBLOCK)) == -1 &&
314 rm(const char *entry, struct dlist *caller) argument
323 * Construct the pathname: note that the entry may live in memory
326 * call, we use the global pathbuf instead of the entry argument.
328 pushfilename(entry);
330 if (fstatat(caller->fd, entry, &temp, AT_SYMLINK_NOFOLLOW) != 0) {
385 faccessat(caller->fd, entry, W_OK|X_OK, AT_EACCESS) != 0 &&
392 if (opendirat(caller->fd, entry, &frame) == -1) {
428 if (unlinkat(caller->fd, entry, fla
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Drepval.c72 static scf_transaction_entry_t *entry = NULL; variable
135 ((entry = scf_entry_create(rep_handle)) == NULL) ||
165 scf_entry_destroy(entry);
166 entry = NULL;
297 * This function creates and associates with transaction entry 'entry' an
305 add_tr_entry_values(scf_handle_t *hdl, scf_transaction_entry_t *entry, argument
321 if (scf_entry_add_value(entry, rval->scf_val) < 0) {
374 if ((scf_transaction_property_new(trans, entry,
376 (scf_transaction_property_change_type(trans, entry,
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/kssl/ksslcfg/
H A Dksslcfg_create.c103 scf_transaction_entry_t *entry = NULL; local
106 entry = scf_entry_create(handle);
107 if (entry == NULL) {
120 if (scf_transaction_property_new(tx, entry, prop_name, type) != 0) {
130 if (scf_entry_add_value(entry, value) != 0) {
/illumos-gate/usr/src/cmd/mdb/common/modules/crypto/
H A Dimpl.c379 prt_soft_conf_entry(kcf_soft_conf_entry_t *addr, kcf_soft_conf_entry_t *entry, argument
385 mdb_printf("ce_next: %p", entry->ce_next);
387 if (entry->ce_name == NULL)
389 else if (mdb_readstr(name, MAXNAMELEN, (uintptr_t)entry->ce_name)
392 entry->ce_name);
396 mdb_printf("ce_count: %d\n", entry->ce_count);
397 prt_mechs(entry->ce_count, entry->ce_mechs);
467 kcf_soft_conf_entry_t entry; local
485 if (mdb_vread(&entry, sizeo
[all...]
/illumos-gate/usr/src/cmd/msgfmt/
H A Dgnu_msgfmt.h75 struct entry { struct
120 extern void handle_message(struct entry *, struct entry *);
133 extern void check_format(struct entry *, struct entry *, int);
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dns_fnreaddir.c479 struct dir_entry *entry; local
497 entry = (struct dir_entry *)
498 auto_rddir_malloc(sizeof (*entry));
499 if (entry == NULL) {
504 (void) memset((char *)entry, 0, sizeof (*entry));
505 entry->name = str;
506 entry->next = *entries_p;
507 *entries_p = entry;
/illumos-gate/usr/src/cmd/rpcsvc/
H A Drup.c59 struct entry { struct
70 struct entry *entry; variable in typeref:struct:entry
93 entry = malloc(sizeof (struct entry) * total_entries);
130 free(entry);
133 free(entry);
184 free(entry);
200 struct entry *tmp;
203 tmp = realloc((struct entry *)entr
[all...]
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dldap.c436 ** SM_LDAP_HAS_OBJECTCLASS -- determine if an LDAP entry is part of a
441 ** entry -- current LDAP entry struct
444 ** any entry can be part of either fee,
452 sm_ldap_has_objectclass(lmap, entry, ocvalue)
454 LDAPMessage *entry;
463 vals = ldap_get_values(lmap->ldap_ld, entry, "objectClass");
575 ** Return current entry pointer if already exists.
666 LDAPMessage *entry; local
675 for (entry
[all...]
H A Dmbdb.c208 ** This routine interprets the strange entry that would appear
501 LDAPMessage *entry; local
564 entry = ldap_first_entry(LDAPLMAP.ldap_ld, LDAPLMAP.ldap_res);
565 if (entry == NULL)
606 for (attr = ldap_first_attribute(LDAPLMAP.ldap_ld, entry, &ber);
608 attr = ldap_next_attribute(LDAPLMAP.ldap_ld, entry, ber))
612 vals = ldap_get_values(LDAPLMAP.ldap_ld, entry, attr);
/illumos-gate/usr/src/cmd/acctadm/
H A Daconf.c56 scf_transaction_entry_t *entry; member in struct:props
342 if (scf_transaction_property_change(tx, p->entry,
345 (void) scf_entry_add_value(p->entry, p->value);
355 scf_entry_destroy(p->entry);
541 if ((p->entry = scf_entry_create(handle)) == NULL) {
547 scf_entry_destroy(p->entry);
/illumos-gate/usr/src/cmd/avs/dsw/
H A Diiboot.c459 char *buf, **entry, *mst, *shd, *bmp, *ctag, *opt, *ptr; local
480 if ((n_structs = cfg_get_section(cfg, &entry, "ii")) == 0)
493 buf = entry[i];
531 free(entry[i++]);
532 if (entry)
533 free(entry);
/illumos-gate/usr/src/cmd/avs/rdc/
H A Dsndrsubr.c278 char **entry; local
289 entries = cfg_get_section(cfg, &entry, "sndr");
293 buf = entry[setnumber - 1];
331 free(entry[setnumber++]);
333 free(entry);
/illumos-gate/usr/src/cmd/backup/restore/
H A Dsymtab.c33 * HASHFACTOR. The variable "entry" points to the hash table;
37 static struct entry **entry; variable in typeref:struct:entry
41 static void addino(ino_t, struct entry *);
42 static struct entry *lookupparent(char *);
43 static void removeentry(struct entry *);
46 static struct entry *lookupparent();
51 * Look up an entry by inode number
53 struct entry *
57 struct entry *e
[all...]
/illumos-gate/usr/src/cmd/hotplugd/
H A Dhotplugd_rcm.c454 info_entry_t *entry; local
475 for (entry = slot->entries; entry != NULL; entry = entry->next) {
487 if ((usage->hp_name = strdup(entry->rsrc)) == NULL) {
493 if ((usage->hp_usage = strdup(entry->usage)) == NULL) {
520 info_entry_t *entry; local
584 /* Append current usage to entry list in the current slot */
587 /* Allocate new entry */
632 info_entry_t *entry; local
[all...]
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/
H A Dkeytab.c405 com_err(whoami, code, gettext("while freeing principal entry"));
428 krb5_keytab_entry entry; local
458 code = krb5_kt_get_entry(context, keytab, princ, kvno, 0, &entry);
467 gettext("%s: No entry for principal "
472 gettext("%s: No entry for principal "
485 kvno = entry.vno;
486 krb5_kt_free_entry(context, &entry);
495 while ((code = krb5_kt_next_entry(context, keytab, &entry, &cursor)) == 0) {
496 if (krb5_principal_compare(context, princ, entry.principal) &&
498 (mode == SPEC && entry
[all...]

Completed in 146 milliseconds

1234567891011>>