HomeSort by: relevance | last modified time | path
    Searched defs:inactive (Results 1 - 24 of 24) sorted by relevancy

  /src/sys/uvm/
uvm_stat.c 59 int active, inactive; local
62 uvm_estimatepageable(&active, &inactive);
81 (*pr)(" %d VM pages: %d active, %d inactive, %d wired, %d free\n",
82 uvmexp.npages, active, inactive, uvmexp.wired, freepg);
uvm_meter.c 98 int active, inactive; local
100 uvm_estimatepageable(&active, &inactive);
111 u.inactive = inactive;
uvm_bio.c 84 (&ubc_object.inactive[(((u_long)(offset)) >> ubc_winshift) & \
104 TAILQ_ENTRY(ubc_map) inactive; /* inactive queue */
117 struct ubc_inactive_head *inactive; member in struct:ubc_object
118 /* inactive queues for ubc_map's */
176 * init inactive queues.
196 ubc_object.inactive = kmem_alloc(UBC_NQUEUES *
199 TAILQ_INIT(&ubc_object.inactive[i]);
204 TAILQ_INSERT_TAIL(&ubc_object.inactive[i & (UBC_NQUEUES - 1)],
205 umap, inactive);
554 TAILQ_REMOVE(UBC_QUEUE(offset), umap, inactive); local
    [all...]
uvm_pdaemon.c 100 * in a pass thru the inactive list when swap is full. the value should be
101 * "small"... if it's too large we'll cycle the active pages thru the inactive
292 * now recompute inactive count
638 * => we work on meeting our free target by converting inactive pages
828 * inactive queue.
911 * by converting inactive pages into free pages. then we work on
912 * meeting our inactive target by converting active pages to
913 * inactive ones.
961 int active, inactive; local
986 uvm_estimatepageable(&active, &inactive);
    [all...]
uvm_extern.h 269 * Value representing inactive emap.
432 int64_t inactive; member in struct:uvmexp_sysctl
  /src/sys/ufs/lfs/
lfs_bio.c 814 int active, inactive; local
816 uvm_estimatepageable(&active, &inactive);
817 return LFS_WAIT_RESOURCE(active + inactive + uvm_availmem(false), 1);
823 int active, inactive; local
825 uvm_estimatepageable(&active, &inactive);
826 return LFS_MAX_RESOURCE(active + inactive + uvm_availmem(false), 1);
  /src/external/mpl/bind/dist/bin/tests/system/ksr/
tests_ksr.py 417 inactive = key.get_timing("Inactive", must_exist=False) variable
420 if inactive is not None and inception >= inactive:
465 inactive = key.get_timing("Inactive", must_exist=False) variable
468 if inactive is not None and inception >= inactive:
518 inactive = key.get_timing("Inactive", must_exist=False variable
    [all...]
  /src/external/mpl/bind/dist/bin/dnssec/
dnssec-keyfromlabel.c 142 isc_stdtime_t inactive = 0, deltime = 0; local
300 inactive = strtotime(isc_commandline_argument, now, now,
544 fatal("Key %s becomes inactive\n\t"
682 dst_key_settime(key, DST_TIME_INACTIVE, inactive);
dnssec-keygen.c 112 isc_stdtime_t inactive; member in struct:keygen_ctx
484 fatal("Key %s becomes inactive\n\t"
719 ctx->inactive);
724 ctx->deltime < ctx->inactive)
730 "made inactive.\n",
1098 ctx.inactive = strtotime(isc_commandline_argument,
dnssec-ksr.c 412 * If this key's inactive time is set before the inception
501 isc_stdtime_t inactive = (active + ksr->lifetime); local
507 dst_key_settime(key, DST_TIME_SYNCDELETE, inactive);
512 dst_key_settime(key, DST_TIME_INACTIVE, inactive);
513 dst_key_settime(key, DST_TIME_DELETE, inactive + remove);
514 *expiration = inactive;
  /src/external/mpl/bind/dist/lib/dns/
dst_internal.h 125 bool inactive; /*%< private key not present as it is member in struct:dst_key
126 * inactive */
dst_api.c 1594 return key->inactive;
1598 dst_key_setinactive(dst_key_t *key, bool inactive) {
1601 key->inactive = inactive;
2192 printtime(key, DST_TIME_INACTIVE, "; Inactive", fp);
2499 * Ignore inactive time.
2512 bool ksk = false, zsk = false, inactive = false; local
2519 inactive = (when <= now);
2540 * Ignore inactive time.
2543 inactive = false
2572 bool ksk = false, zsk = false, inactive = false; local
    [all...]
keymgr.c 313 * No inactive time and no lifetime,
441 uint32_t inactive; local
443 if (ISC_OVERFLOW_ADD(a, lifetime, &inactive)) {
444 log_key_overflow(key->key, "inactive");
445 inactive = UINT32_MAX;
447 dst_key_settime(key->key, DST_TIME_INACTIVE, inactive);
2043 uint32_t inactive; local
2045 if (ISC_OVERFLOW_ADD(active, lifetime, &inactive)) {
2046 log_key_overflow(new_key->key, "inactive");
2047 inactive = UINT32_MAX
2896 isc_stdtime_t active = 0, published = 0, inactive = 0, local
    [all...]
rbtdb.c 606 unsigned int inactive = 0; local
636 inactive++;
641 if (inactive != 0) {
643 rbtdb->active -= inactive;
2255 bool inactive = false; local
2274 inactive = true;
2283 if (inactive) {
  /src/external/mpl/dhcp/bind/dist/lib/dns/
dst_internal.h 149 bool inactive; /*%< private key not present as it is member in struct:dst_key
150 * inactive */
dst_api.c 1610 key->inactive = false;
1619 return (key->inactive);
1623 dst_key_setinactive(dst_key_t *key, bool inactive) {
1626 key->inactive = inactive;
2250 printtime(key, DST_TIME_INACTIVE, "; Inactive", fp);
2563 * Ignore inactive time.
2576 bool ksk = false, zsk = false, inactive = false; local
2583 inactive = (when <= now);
2604 * Ignore inactive time
2636 bool ksk = false, zsk = false, inactive = false; local
    [all...]
rbtdb.c 1248 unsigned int inactive = 0; local
1277 inactive++;
1282 if (inactive != 0) {
1284 rbtdb->active -= inactive;
5598 bool inactive = false; local
5615 inactive = true;
5623 if (inactive) {
  /src/external/mpl/bind/dist/lib/isc/netmgr/
tlsstream.c 145 * inactive, or the netmgr is closing: any operation on it should abort
149 inactive(isc_nmsocket_t *sock) { function
328 if (!inactive(sock) && sock->tlsstream.state == TLS_IO) {
364 if (shutting_down || inactive(sock)) {
1055 } else if (inactive(sock)) {
1118 } else if (inactive(sock)) {
  /src/usr.sbin/user/
user.c 766 fprintf(fp, "inactive\t%s\n", (up->u_inactive == NULL) ?
859 } else if (strncmp(s, "inactive", 8) == 0) {
1071 time_t inactive; local
1205 if (!scantime(&inactive, up->u_inactive)) {
1206 warnx("Warning: inactive time `%s' invalid, password expiry off",
1239 (long) inactive,
1609 warnx("Warning: inactive time `%s' invalid, "
1794 "[-e expiry-time] [-f inactive-time]\n"
1799 "\t[-f inactive-time] [-G secondary-group] "
1808 "\t[-f inactive] [-G secondary-group]
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
route.h 173 bool inactive, previously_inactive; member in struct:interface
229 // In this situation, the interface is inactive and if we are using it we should stop.
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_debugfs.c 235 u64 active, inactive; member in struct:file_stats
262 stats->inactive += vma->node.size;
280 stats->inactive += vma->node.size;
301 seq_printf(m, "%s: %lu objects, %llu bytes (%llu active, %llu inactive, %llu unbound, %llu closed)\n", \
306 stats.inactive, \
1674 seq_puts(m, "\nRPS Autotuning inactive\n");
1975 "inactive",
1979 "transition to inactive, capture and display, timing re-sync",
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zfs_ioctl.c 7163 int active, inactive; local
  /src/sys/dist/pf/net/
pfvar.h 897 } active, inactive; member in struct:pf_ruleset::__anon3966
  /src/external/bsd/openldap/dist/include/
ldap.h 2745 ber_int_t inactive; member in struct:LDAPAccountUsabilityMoreInfo

Completed in 70 milliseconds