Searched refs:expiration (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10.1/PowerManagement-494.1.2/pmconfigd/
H A DPlatform.c77 if (gTCPKeepAlive && gTCPKeepAlive->expiration)
78 dispatch_source_cancel(gTCPKeepAlive->expiration);
84 if (!gTCPKeepAlive->expiration) {
85 gTCPKeepAlive->expiration = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0,
87 dispatch_source_set_event_handler(gTCPKeepAlive->expiration, ^{
91 dispatch_source_set_cancel_handler(gTCPKeepAlive->expiration, ^{
92 if (gTCPKeepAlive->expiration) {
93 dispatch_release(gTCPKeepAlive->expiration);
94 gTCPKeepAlive->expiration = 0;
100 dispatch_suspend(gTCPKeepAlive->expiration);
[all...]
H A DPlatform.h49 dispatch_source_t expiration; member in struct:__anon3504
/macosx-10.10.1/emacs-93/emacs/src/
H A Datimer.c48 /* List of active atimers, sorted by expiration time. The timer that
130 /* Compute the timer's expiration time. */
134 t->expiration = time;
138 EMACS_GET_TIME (t->expiration);
139 EMACS_ADD_TIME (t->expiration, t->expiration, time);
143 EMACS_GET_TIME (t->expiration);
144 EMACS_ADD_TIME (t->expiration, t->expiration, time);
315 EMACS_SUB_TIME (time, atimers->expiration, no
[all...]
H A Datimer.h64 EMACS_TIME expiration; member in struct:atimer
/macosx-10.10.1/WebKit-7600.1.25/mac/Misc/
H A DWebNSViewExtras.h55 // passes expiration or the mouse moves less than the hysteresis before the mouseUp event,
58 withExpiration:(NSDate *)expiration
65 withExpiration:(NSDate *)expiration;
H A DWebNSViewExtras.m79 withExpiration:(NSDate *)expiration
97 untilDate:expiration
141 withExpiration:(NSDate *)expiration
144 withExpiration:expiration
/macosx-10.10.1/tcl-105/tk/tk/macosx/
H A DtkMacOSXNotify.c53 untilDate:(NSDate *)expiration inMode:(NSString *)mode
58 NSEvent *event = [[super nextEventMatchingMask:mask untilDate:expiration
/macosx-10.10.1/bootp-298/DHCPServer/
H A DDHCPServer.c194 CFDateRef expiration; local
212 expiration = CFDateCreate(NULL, lease_delta + now_cf);
214 expiration);
215 CFRelease(expiration);
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dutil.c477 if(edit_timet ("Principal expiration time", &ent->princ_expire_time, mask,
481 if(edit_timet ("Password expiration time", &ent->pw_expiration, mask,
508 const char *expiration,
528 if (expiration) {
529 if (parse_timet (expiration, &ent->princ_expire_time,
531 krb5_warnx (contextp, "unable to parse `%s'", expiration);
503 set_entry(krb5_context contextp, kadm5_principal_ent_t ent, int *mask, const char *max_ticket_life, const char *max_renewable_life, const char *expiration, const char *pw_expiration, const char *attributes, const char *policy) argument
H A Dank.c77 const char *expiration,
99 expiration, pw_expiration, attributes, policy);
66 add_one_principal(const char *name, int rand_key, int rand_password, int use_defaults, int verbose_flag, char *password, char *policy, krb5_key_data *key_data, const char *max_ticket_life, const char *max_renewable_life, const char *attributes, const char *expiration, const char *pw_expiration) argument
/macosx-10.10.1/IOFireWireIP-226.2/KernelHeaders/IOKit/
H A DIOFWIPDefinitions.h205 UInt8 expiration; /* For advertisements, lifespan remaining */ member in struct:__anon1611
320 reference as soon as the node disappears. Instead, an expiration timer is
348 UInt8 expiration; /* Seconds remaining in valid channel mapping */ member in class:MCB
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Dsyspolicy.sql29 -- Dates are uniformly in julian form. We use 5000000 as the canonical "never" expiration
65 expires FLOAT NOT NULL DEFAULT (5000000), -- expiration of rule authority (Julian date)
167 expires FLOAT NOT NULL DEFAULT (5000000), -- expiration of object entry
194 CASE object.expires WHEN 5000000 THEN NULL ELSE STRFTIME('%Y-%m-%d %H:%M:%f', object.expires, 'localtime') END AS expiration,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dsyspolicy.sql29 -- Dates are uniformly in julian form. We use 5000000 as the canonical "never" expiration
65 expires FLOAT NOT NULL DEFAULT (5000000), -- expiration of rule authority (Julian date)
167 expires FLOAT NOT NULL DEFAULT (5000000), -- expiration of object entry
194 CASE object.expires WHEN 5000000 THEN NULL ELSE STRFTIME('%Y-%m-%d %H:%M:%f', object.expires, 'localtime') END AS expiration,
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Doc/sphinx_build/html/_static/
H A Dwebsupport.js412 var expiration = new Date();
413 expiration.setDate(expiration.getDate() + 365);
415 ';expires=' + expiration.toUTCString();
/macosx-10.10.1/cups-408/cups/cups/
H A Dtls-darwin.c557 * Credentials don't match, let's look at the expiration date of the new
558 * credentials and allow if the new ones have a later expiration...
600 * 'httpCredentialsGetExpiration()' - Return the expiration date of the credentials.
610 time_t expiration; /* Expiration date */ local
616 expiration = (time_t)(SecCertificateNotValidAfter(secCert) + kCFAbsoluteTimeIntervalSince1970);
620 return (expiration);
653 time_t expiration; /* Expiration date of cert */ local
665 expiration = (time_t)(SecCertificateNotValidAfter(secCert) + kCFAbsoluteTimeIntervalSince1970);
671 snprintf(buffer, bufsize, "%s / %s / %02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", name, httpGetDateString(expiration), md5_digest[0], md5_digest[1], md5_digest[2], md5_digest[3], md5_digest[4], md5_digest[5], md5_digest[6], md5_digest[7], md5_digest[8], md5_digest[9], md5_digest[10], md5_digest[11], md5_digest[12], md5_digest[13], md5_digest[14], md5_digest[15]);
H A Dtls-gnutls.c425 * Credentials don't match, let's look at the expiration date of the new
426 * credentials and allow if the new ones have a later expiration...
476 * 'httpCredentialsGetExpiration()' - Return the expiration date of the credentials.
529 time_t expiration; /* Expiration date of cert */ local
539 expiration = gnutls_x509_crt_get_expiration_time(cert);
545 snprintf(buffer, bufsize, "%s / %s / %02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", name, httpGetDateString(expiration), md5_digest[0], md5_digest[1], md5_digest[2], md5_digest[3], md5_digest[4], md5_digest[5], md5_digest[6], md5_digest[7], md5_digest[8], md5_digest[9], md5_digest[10], md5_digest[11], md5_digest[12], md5_digest[13], md5_digest[14], md5_digest[15]);
H A Dtls-sspi.c273 * 'httpCredentialsGetExpiration()' - Return the expiration date of the credentials.
341 time_t expiration; /* Expiration date of cert */ local
354 expiration = mktime(&tm);
373 snprintf(buffer, bufsize, "%s / %s / %02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", cert_name, httpGetDateString(expiration), md5_digest[0], md5_digest[1], md5_digest[2], md5_digest[3], md5_digest[4], md5_digest[5], md5_digest[6], md5_digest[7], md5_digest[8], md5_digest[9], md5_digest[10], md5_digest[11], md5_digest[12], md5_digest[13], md5_digest[14], md5_digest[15]);
1810 int years) /* I - Years until expiration */
/macosx-10.10.1/Heimdal-398.1.2/kuser/
H A Dklist.c369 time_t *expiration)
378 if (expiration)
379 *expiration = time(NULL) + t;
367 check_expiration(krb5_context context, krb5_ccache ccache, time_t *expiration) argument
/macosx-10.10.1/IOFireWireIP-226.2/KernelSource/IOKit/
H A DIOFWIPBusInterface.cpp1565 groupDescriptor->expiration = mcb->expiration;
1933 left the group) and refresh the expiration timer so that the MCAP
1980 if ( (groupDescr->expiration < 60) and (mcb->ownerNodeID == mcapSourceID) )
1988 mcb->expiration = groupDescr->expiration;
1990 else if ( (mcb->ownerNodeID < mcapSourceID) or (mcb->expiration < 60) )
1993 mcb->expiration = groupDescr->expiration;
2818 if (mcb->expiration >
[all...]
/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A Ddhcp.c86 absolute_time_t expiration; member in struct:__anon6628
1171 dhcp_info_p->lease_expiration = dhcp->lease.expiration;
1253 dhcp->lease.t1 = dhcp->lease.t2 = dhcp->lease.expiration = 0;
1256 dhcp->lease.expiration = dhcp->lease.start + dhcp->lease.length;
1262 "lease = { start 0x%lx, t1 0x%lx, t2 0x%lx, expiration 0x%lx }",
1264 dhcp->lease.t1, dhcp->lease.t2, dhcp->lease.expiration);
1271 * Apply the delta to the lease information: start, t1, t2, and expiration.
1280 info_p->expiration += delta;
1297 "lease = { start 0x%lx, t1 0x%lx, t2 0x%lx, expiration 0x%lx }",
1299 lease_p->start, lease_p->t1, lease_p->t2, lease_p->expiration);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kdc/
H A Dfast.c131 if (r->fast.expiration < kdc_time) {
156 r->fast.expiration = kdc_time + FAST_EXPIRATION_TIME;
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Drevoke.c1178 * @param expiration return the time the OCSP will expire and need to
1192 time_t *expiration)
1202 *expiration = 0;
1245 *expiration = *basic.tbsResponseData.responses.val[i].nextUpdate;
1247 *expiration = now;
1187 hx509_ocsp_verify(hx509_context context, time_t now, hx509_cert cert, int flags, const void *data, size_t length, time_t *expiration) argument
H A Dhxtool.c1180 time_t expiration; local
1184 os->data, os->length, &expiration);
1190 printf("expire: %d\n", (int)expiration);
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dmml.el58 '(name access-type expiration size permission format)
530 cont '(expiration size permission)))
556 cont '(expiration size permission)))
/macosx-10.10.1/Heimdal-398.1.2/tests/kdc/
H A Dcheck-kdc.in149 ${kadmin} modify --pw-expiration-time=+1day pw-expire@${R} || exit 1

Completed in 183 milliseconds

12