Searched refs:current (Results 101 - 125 of 377) sorted by relevance

1234567891011>>

/freebsd-current/contrib/dialog/
H A Dformbox.c518 DIALOG_FORMITEM *current; local
530 DLG_TRACE2N("current", *current_item);
605 current = &items[choice];
647 current = &items[choice];
648 dialog_vars.max_input = current->text_ilen;
649 dlg_item_help(current->help);
650 dlg_show_string(form, current->text, chr_offset,
652 current->text_y - scrollamt,
653 current->text_x,
654 current
[all...]
H A Dtreeview.c50 * current item. That one is colored differently from the other items.
337 /* ensure we are scrolled to show the current choice */
395 int current = scrollamt + choice; local
396 int next = items[current].state + 1;
402 items[current].state = next;
405 if (i != current) {
409 if (items[current].state) {
410 items[current].state = next ? next : 1;
412 items[current].state = 1;
454 * current scree
588 int current = 0; local
[all...]
/freebsd-current/contrib/ncurses/form/
H A Dfrm_post.c78 if ((err = _nc_Set_Form_Page(form, page, form->current)) != E_OK)
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_upgrade/
H A Dzfs_upgrade_005_pos.ksh38 # it upgrade all filesystems to specific or current version.
41 # 1. Prepare a set of datasets which contain old-version and current version.
85 for newv in "" "current" $ZFS_VERSION; do
89 if [[ $newv == current ]]; then
H A Dzfs_upgrade_004_pos.ksh38 # it upgrade filesystem recursively to specific or current version.
41 # 1. Prepare a set of datasets which contain old-version and current version.
85 for newv in "" "current" $ZFS_VERSION; do
90 if [[ $newv == current ]]; then
H A Dzfs_upgrade_003_pos.ksh38 # it could upgrade a filesystem to specific version or current version.
41 # 1. Prepare a set of datasets which contain old-version and current version.
77 for newv in "" "current" $ZFS_ALL_VERSIONS; do
84 if [[ $newv == current ]]; then
/freebsd-current/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-err.c33 * But we would still default to the current default of not to do that.
43 printk("Showing stack for process %d\n", current->pid);
/freebsd-current/contrib/openpam/lib/libpam/
H A Dopenpam_impl.h110 pam_chain_t *current; member in struct:pam_handle
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zfs_upgrade/
H A Dzfs_upgrade_005_pos.ksh37 # it upgrade all filesystems to specific or current version.
40 # 1. Prepare a set of datasets which contain old-version and current version.
101 for newv in "" "current" $ZFS_VERSION; do
105 if [[ $newv == current ]]; then
H A Dzfs_upgrade_004_pos.ksh37 # it upgrade filesystem recursively to specific or current version.
40 # 1. Prepare a set of datasets which contain old-version and current version.
95 for newv in "" "current" $ZFS_VERSION; do
100 if [[ $newv == current ]]; then
H A Dzfs_upgrade_003_pos.ksh37 # it could upgrade a filesystem to specific version or current version.
40 # 1. Prepare a set of datasets which contain old-version and current version.
87 for newv in "" "current" $ZFS_ALL_VERSIONS; do
94 if [[ $newv == current ]]; then
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dsched.h88 struct work_struct *work; /* current work struct, if set */
94 #define current ({ \ macro
112 #define set_current_state(x) set_task_state(current, x)
113 #define __set_current_state(x) __set_task_state(current, x)
173 linux_task_exiting(current)
/freebsd-current/usr.bin/m4/
H A Dgnum4.c58 * First search in the current directory.
191 static size_t current = 0; variable
212 while (current + n > bufsize) {
222 memcpy(buffer+current, c, n);
223 current += n;
229 if (current +1 > bufsize) {
236 buffer[current++] = c;
243 current = 0;
/freebsd-current/sys/fs/tarfs/
H A Dtarfs_subr.c133 struct tarfs_node *current; local
148 TAILQ_FOREACH(current, &tnp->dir.dirhead, dirents) {
149 TARFS_DPF(LOOKUP, "%s: tarfs_node %p, current %p, ino %lu\n",
150 __func__, tnp, current, current->ino);
151 TARFS_DPF_IFF(LOOKUP, current->name != NULL,
152 "%s: name: %s\n", __func__, current->name);
153 if (current->ino == cookie) {
155 "cookie %lu\n", __func__, current,
156 current
[all...]
/freebsd-current/crypto/heimdal/lib/sl/
H A Dsl.c111 SL_cmd *c, *current = NULL, *partial_cmd = NULL; local
116 current = c;
118 return current;
120 partial_cmd != current) {
122 partial_cmd = current;
/freebsd-current/sys/contrib/ck/src/
H A Dck_epoch.c154 struct ck_epoch_ref *current, *other; local
157 current = &record->local.bucket[i];
158 current->count--;
160 if (current->count > 0)
164 * If the current bucket no longer has any references, then
174 ((int)(current->epoch - other->epoch) < 0)) {
218 * If this is this is a new reference into the current
450 * Determine whether all threads have observed the current
495 * Increment current epoch. CAS semantics are used to eliminate
580 * At this point, epoch is the current globa
[all...]
/freebsd-current/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_kern_lib.c294 (uintptr_t)current);
400 list)->pid == current->p_pid) {
438 if ((status != VCHIQ_RETRY) || fatal_signal_pending(current) ||
452 waiter->pid = current->p_pid;
458 (unsigned int)waiter, current->p_pid);
/freebsd-current/sys/contrib/ncsw/etc/
H A Dncsw_mem.c70 if (p_Mem->current == p_Mem->num)
77 p_Block = p_Mem->p_BlocksStack[p_Mem->current];
79 p_Mem->p_BlocksStack[p_Mem->current] = NULL;
81 /* advance current index */
82 p_Mem->current++;
91 if (p_Mem->current > 0)
93 /* decrease current index */
94 p_Mem->current--;
96 p_Mem->p_BlocksStack[p_Mem->current] = (uint8_t *)p_Block;
338 p_Mem->current
[all...]
/freebsd-current/usr.bin/indent/
H A Dio.c58 static int pad_output(int current, int target);
373 * FUNCTION: Writes tabs and spaces to move the current column up to the desired
378 * PARAMETERS: current integer The current column target
381 * RETURNS: Integer value of the new column. (If current >= target, no action is
382 * taken, and current is returned.
394 pad_output(int current, int target) argument
396 * get the current output position up to the
398 /* current: the current colum
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp380 TrampolineMemoryRegion *current = &TrampolineRegions[bucket]; local
381 if (current->content == 0)
383 ::VirtualFree((void*)current->content, 0, MEM_RELEASE);
384 current->content = 0;
392 TrampolineMemoryRegion* current = &TrampolineRegions[bucket]; local
393 if (current->content == 0) {
400 current->content = (uptr)content;
401 current->allocated_size = 0;
402 current->max_size = bucket_size;
403 region = current;
[all...]
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dread_termcap.c87 * The current source (in 2009) uses 183 lines of BSD4.4 Lite (441 ignoring
190 * Skip past the current capability field - it is either the
280 int current; local
301 current = in_array;
318 for (current = in_array; db_array[current] != 0; current++) {
326 } else if ((_nc_access(db_array[current], R_OK) < 0)
327 || (fd = safe_open2(db_array[current], O_RDONLY)) < 0) {
500 iret = _nc_getent(&icap, &ilen, &oline, current, db_arra
[all...]
/freebsd-current/contrib/nvi/ex/
H A Dex_cscope.c83 "Discard all current cscope connections", "reset" },
493 rtqp->current = rtp;
505 * Stick the current context in a convenient place, we'll lose it
542 if (ex_tag_Nswitch(sp, tqp->current, force))
549 if (ex_tag_nswitch(sp, tqp->current, force))
553 * If this is the first tag, put a `current location' queue entry
554 * in place, so we can pop all the way back to the current mark.
562 /* Link the current TAGQ structure into place. */
565 (void)cscope_search(sp, tqp, tqp->current);
568 * Move the current contex
[all...]
/freebsd-current/contrib/ofed/libibnetdisc/
H A Dchassis.c127 ibnd_chassis_t *current; local
129 for (current = fabric->chassis; current; current = current->next)
130 if (current->chassisnum == chassisnum)
131 return current;
242 ibnd_chassis_t *current; local
246 for (current = fabric->chassis; current; curren
[all...]
/freebsd-current/usr.bin/bc/
H A Dbc.y98 static ssize_t current = 0;
769 if (current == instr_sz) {
786 instructions[current].index = CONST_STRING;
787 instructions[current].u.cstr = str;
788 return (current++);
796 instructions[current].index = ALLOC_STRING;
797 instructions[current].u.astr = strdup(str);
798 if (instructions[current].u.astr == NULL)
800 return (current++);
811 ret = current;
[all...]
/freebsd-current/lib/libdevstat/
H A Ddevstat.c51 compute_stats(struct devstat *current, struct devstat *previous,
215 * Get the current generation number.
235 * Get the current devstat version. The return value of this function
249 * Get the current devstat version.
324 * Get the current list of devices and statistics, and the current
367 * The kern.devstat.all sysctl returns the current
457 * If the generation has changed, and if the current number of
501 * - current number of devices selected (num_selected)
505 * - current devsta
1176 compute_stats(struct devstat *current, struct devstat *previous, long double etime, u_int64_t *total_bytes, u_int64_t *total_transfers, u_int64_t *total_blocks, long double *kb_per_transfer, long double *transfers_per_second, long double *mb_per_second, long double *blocks_per_second, long double *ms_per_transaction) argument
1229 devstat_compute_statistics(struct devstat *current, struct devstat *previous, long double etime, ...) argument
[all...]

Completed in 305 milliseconds

1234567891011>>