Home
last modified time | relevance | path

Searched refs:spcl (Results 1 – 10 of 10) sorted by relevance

/freebsd-12-stable/sbin/dump/
Dtraverse.c139 (CHANGEDSINCE(dp, spcl.c_ddate) && \
142 #define WANTTODUMP(dp) CHANGEDSINCE(dp, spcl.c_ddate)
480 spcl.c_mode = dp->dp1.di_mode; in dumpino()
481 spcl.c_size = dp->dp1.di_size; in dumpino()
482 spcl.c_extsize = 0; in dumpino()
483 spcl.c_atime = _time32_to_time(dp->dp1.di_atime); in dumpino()
484 spcl.c_atimensec = dp->dp1.di_atimensec; in dumpino()
485 spcl.c_mtime = _time32_to_time(dp->dp1.di_mtime); in dumpino()
486 spcl.c_mtimensec = dp->dp1.di_mtimensec; in dumpino()
487 spcl.c_birthtime = 0; in dumpino()
[all …]
Dmain.c131 spcl.c_date = _time_to_time64(time(NULL)); in main()
232 spcl.c_ddate = unctime(optarg); in main()
233 if (spcl.c_ddate < 0) { in main()
353 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN); in main()
354 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN); in main()
356 (void)strncpy(spcl.c_dev, disk, NAMELEN); in main()
357 (void)strncpy(spcl.c_filesys, "an unlisted file system", in main()
360 spcl.c_dev[NAMELEN-1]='\0'; in main()
361 spcl.c_filesys[NAMELEN-1]='\0'; in main()
403 spcl.c_date = _time_to_time64(sb.st_mtime); in main()
[all …]
Dtape.c172 lastspclrec = spcl.c_tapea; in writerec()
174 spcl.c_tapea++; in writerec()
191 spcl.c_tapea += avail; in dumpblock()
284 if (spcl.c_type != TS_END && spcl.c_type != TS_CLRI && in flushtape()
285 spcl.c_type != TS_BITS) { in flushtape()
286 assert(spcl.c_count <= TP_NINDIR); in flushtape()
287 for (i = 0; i < spcl.c_count; i++) in flushtape()
288 if (spcl.c_addr[i] != 0) in flushtape()
291 slp->count = lastspclrec + blks + 1 - spcl.c_tapea; in flushtape()
292 slp->tapea = spcl.c_tapea; in flushtape()
[all …]
Ditime.c143 spcl.c_ddate = 0; in getdumptime()
156 if (ddp->dd_ddate <= _time64_to_time(spcl.c_ddate)) in getdumptime()
158 spcl.c_ddate = _time_to_time64(ddp->dd_ddate); in getdumptime()
186 spcl.c_ddate = 0; in putdumptime()
205 dtwalk->dd_ddate = _time64_to_time(spcl.c_date); in putdumptime()
215 if (spcl.c_date == 0) { in putdumptime()
218 time_t t = _time64_to_time(spcl.c_date); in putdumptime()
/freebsd-12-stable/sbin/restore/
Dtape.c239 if (gethead(&spcl) == FAIL) { in setup()
256 dumptime = _time64_to_time(spcl.c_ddate); in setup()
257 dumpdate = _time64_to_time(spcl.c_date); in setup()
272 if (spcl.c_volume != 1) { in setup()
276 if (gethead(&spcl) == FAIL) { in setup()
280 findinode(&spcl); in setup()
281 if (spcl.c_type != TS_CLRI) { in setup()
285 maxino = (spcl.c_count * TP_BSIZE * NBBY) + 1; in setup()
293 if (spcl.c_type != TS_BITS) { in setup()
497 (void) gethead(&spcl); in getvol()
[all …]
/freebsd-12-stable/release/picobsd/tinyware/msh/
Dsh4.c422 static char spcl[] = "[?*"; variable
436 if (any(*pp, spcl))
438 else if (!any(*pp & ~QUOTE, spcl))
445 if (any(*pp, spcl)) {
511 if (any(dname[k], spcl))
515 if (*np && !anys(np, spcl)) {
563 if (anys(spcl, *wd++))
/freebsd-12-stable/sys/dev/kbd/
Dkbd.c891 omapp->key[i].spcl = mapp->key[i].spcl; in genkbd_commonioctl()
906 mapp->key[i].spcl = omapp->key[i].spcl; in genkbd_commonioctl()
1026 ((key->spcl & (0x80 >> i)) && \
1046 if (oldkey->spcl != newkey->spcl) in key_change_ok()
1061 if ((oldkey->spcl & (0x80 >> i)) == (newkey->spcl & (0x80 >> i)) in key_change_ok()
1355 if (key->spcl & (0x80 >> i)) { in genkbd_keyaction()
/freebsd-12-stable/sys/sys/
Dkbio.h110 u_char spcl; member
126 u_char spcl; member
/freebsd-12-stable/usr.sbin/kbdcontrol/
Dkbdcontrol.c336 map->key[scancode].spcl = 0; in get_key_definition_line()
341 map->key[scancode].spcl |= (0x80 >> i); in get_key_definition_line()
550 if (key->spcl & (0x80 >> i)) in print_key_definition_line()
748 if (keymap->key[i].spcl & (0x80 >> j)) in dump_key_definition()
754 (unsigned)keymap->key[i].spcl, in dump_key_definition()
/freebsd-12-stable/include/protocols/
Ddumprestore.h133 #define spcl u_spcl.s_spcl macro