Searched defs:shadow (Results 1 - 5 of 5) sorted by relevance
/osnet-11/usr/src/lib/libast/common/disc/ |
H A D | sfdcseekable.c | 34 Sfio_t* shadow; /* to shadow data */ member in struct:_skable_s 36 Sfoff_t extent; /* shadow extent */ 69 sf = sk->shadow; 117 sf = sk->shadow; 181 sfclose(sk->shadow); 188 sfseek(sk->shadow,(Sfoff_t)0,SEEK_SET); 215 sk->shadow = sftmp(SF_BUFSIZE); 221 { sfclose(sk->shadow);
|
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | getspent_r.c | 32 #include <shadow.h> 167 * str2spwd() -- convert a string to a shadow passwd entry. The parser is 182 struct spwd *shadow = (struct spwd *)ent; local 213 shadow->sp_namp = bufp = buffer; 214 shadow->sp_pwdp = 0; 215 shadow->sp_lstchg = -1; 216 shadow->sp_min = -1; 217 shadow->sp_max = -1; 218 shadow->sp_warn = -1; 219 shadow [all...] |
/osnet-11/usr/src/lib/libzfs/common/ |
H A D | libzfs_shadow.c | 29 * ZFS shadow data migration 31 * ZFS supports native integration with the 'shadow' mount property used to 33 * this is quite generic, and allows for 'shadow=<path>' to be set on any 35 * native 'shadow' property, and support a friendlier way of specifying 38 * The 'shadow' ZFS property does not take a filesystem path, but a URI 47 * appropriate protocol, and pass down the path to the shadow filesystem. 69 #define ZFS_SHADOW_DIR _PATH_SYSVOL "/zfs/shadow" 73 zfs_shadow_parse(libzfs_handle_t *hdl, const char *shadow, argument 80 errmsg = dgettext(TEXT_DOMAIN, "cannot create shadow directory"); 84 if (strncmp(shadow, "fil 207 zfs_shadow_validate(libzfs_handle_t *hdl, const char *shadow) argument 231 char shadow[ZFS_MAXPROPLEN]; local 374 char shadow[ZFS_MAXPROPLEN]; local 406 char shadow[ZFS_MAXPROPLEN]; local [all...] |
/osnet-11/usr/src/lib/passwdutil/ |
H A D | switch_utils.c | 40 #include <shadow.h> 504 * str2spwd() -- convert a string to a shadow passwd entry. The parser is 524 struct spwd *shadow = (struct spwd *)ent; local 546 shadow->sp_namp = bufp = buffer; 547 shadow->sp_pwdp = 0; 548 shadow->sp_lstchg = -1; 549 shadow->sp_min = -1; 550 shadow->sp_max = -1; 551 shadow->sp_warn = -1; 552 shadow [all...] |
/osnet-11/usr/src/lib/libnisdb/yptol/ |
H A D | shim_changepasswd.c | 63 #include <shadow.h> 644 struct spwd *shadow; local 663 * Since there are no shadow maps this is done by accessing 668 /* Try to get shadow information */ 669 shadow = get_old_shadow(yppwd->newpw.pw_name, domain); 671 /* If there is shadow information make password aging checks */ 672 if (NULL != shadow) { 675 if (shadow->sp_max != -1) { 676 if (now < shadow->sp_lstchg + shadow [all...] |
Completed in 33 milliseconds