Searched defs:new1 (Results 1 - 3 of 3) sorted by relevance
| /osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/ |
| H A D | rc_common.c | 24 cmp(krb5_donot_replay *old, krb5_donot_replay *new1, krb5_deltat t) argument 26 if ((old->cusec == new1->cusec) && /* most likely to distinguish */ 27 (old->ctime == new1->ctime) && 28 (strcmp(old->client, new1->client) == 0) && 29 (strcmp(old->server, new1->server) == 0)) { /* always true */ 31 if (old->msghash == NULL || new1->msghash == NULL || 32 strcmp(old->msghash, new1->msghash) == 0) 39 alive(krb5_int32 mytime, krb5_donot_replay *new1, krb5_deltat t) argument 44 if (new1->ctime + t < mytime)
|
| H A D | rc_io.c | 362 krb5_rc_io_move(krb5_context context, krb5_rc_iostuff *new1, argument 394 new_fn = new1->fn; 395 new1->fn = NULL; 396 close(new1->fd); 397 new1->fd = -1; 411 retval = krb5_rc_io_open_internal(context, new1, 0, new_fn); 415 if (lseek(new1->fd, offset, SEEK_SET) == -1) { 426 if (rename(old->fn, new1->fn) == -1) /* MUST be atomic! */ 428 fn = new1->fn; 429 new1 [all...] |
| /osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
| H A D | args.t | 13 sub new1 { bless \@_ } subroutine 15 my $x = new1("x"); 16 my $y = new1("y"); 29 sub new3 { goto &new1 }
|
Completed in 673 milliseconds