/src/lib/libedit/ |
chartype.c | 50 ct_conv_cbuff_resize(ct_buffer_t *conv, size_t csize) 54 if (csize <= conv->csize) 57 conv->csize = csize; 59 p = el_realloc(conv->cbuff, conv->csize * sizeof(*conv->cbuff)); 61 conv->csize = 0; 62 el_free(conv->cbuff); 63 conv->cbuff = NULL; 66 conv->cbuff = p [all...] |
search.c | 117 static ct_buffer_t conv; local in function:el_match 133 if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) { 134 rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL, 142 if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) { 143 rv = regexec(re, ct_encode_string(str, &conv)); 150 if (re_comp(ct_encode_string(pat, &conv)) != NULL) 153 return re_exec(ct_encode_string(str, &conv)) == 1; 576 static ct_buffer_t conv; local in function:cv_repeat_srch 578 c, el->el_search.patlen, ct_encode_string(el->el_search.patbuf, &conv));
|
/src/sys/arch/next68k/stand/boot/ |
installboot.sh | 18 dd if="$1" of="$2" obs=1024 seek=32 conv=osync 19 dd if="$1" of="$2" obs=1024 seek=96 conv=osync
|
/src/sys/arch/x68k/stand/xxboot/cdboot_cd9660/ |
Makefile | 7 ( ( echo -n X68SCSI1 | dd bs=2048 conv=sync ) ; \ 8 ( cat ${PROG} | dd bs=2048 conv=sync ) ) > ${PROG}.n ; \
|
/src/distrib/sun3/ |
MakeBootTape | 22 dd if=tapeboot of=$T obs=8k conv=sync 26 dd of=$T obs=8k conv=sync 30 dd of=$T obs=8k conv=sync
|
MakeInstTape | 22 dd if=../../binary/sets/${f}.tgz of=$T obs=8k conv=sync
|
/src/distrib/sun2/ |
MakeInstTape | 22 dd if=../../binary/sets/${f}.tgz of=$T obs=8k conv=sync
|
MakeBootTape | 21 dd if=tapeboot of=$T obs=8k conv=sync 25 dd of=$T obs=8k conv=sync
|
/src/sys/arch/i386/bioscall/ |
bin2asm.sh | 19 dd if=${in} bs=${len} conv=sync |\
|
/src/usr.bin/hexdump/ |
Makefile | 5 SRCS= conv.c display.c hexdump.c hexsyntax.c odsyntax.c parse.c 15 COPTS.conv.c += -Wno-format-nonliteral
|
/src/bin/dd/ |
Makefile | 7 SRCS= args.c conv.c dd.c dd_swab.c misc.c position.c
|
args.c | 107 { "conv", f_conv, 0, 0 }, 349 errx(EXIT_FAILURE, "conv option disabled"); 354 static const struct conv { struct 383 const struct conv *cp; 384 struct conv tmp; 408 return (strcmp(((const struct conv *)a)->name, 409 ((const struct conv *)b)->name));
|
/src/usr.bin/audio/play/ |
play.c | 288 audio_write(int fd, void *buf, size_t len, convert conv) 296 if (conv == NULL) 306 len = conv(buf, convert_buffer, len); 313 convert conv = NULL; local in function:play 365 sizet_filesize, audiofd, &datasize, file, &conv)) < 0) { 383 nw = audio_write(audiofd, addr, bufsize, conv); 391 nw = audio_write(audiofd, addr, datasize, conv); 411 convert conv = NULL; local in function:play_fd 431 hdrlen = audioctl_write_fromhdr(buffer, nr, audiofd, &datasize, file, &conv); 447 nw = audio_write(audiofd, buffer, nr, conv); [all...] |
/src/libexec/ftpd/ |
conf.c | 82 struct ftpconv *conv, *cnext; local in function:init_curclass 84 for (conv = curclass.conversions; conv != NULL; conv = cnext) { 85 REASSIGN(conv->suffix, NULL); 86 REASSIGN(conv->types, NULL); 87 REASSIGN(conv->disable, NULL); 88 REASSIGN(conv->command, NULL); 89 cnext = conv->next; 90 free(conv); 147 struct ftpconv *conv, *cnext; local in function:parse_conf [all...] |
/src/distrib/common/ |
buildfloppies.sh | 198 dd bs=8k conv=sync seek=${seek} skip=${skip} count=${count} \ 209 dd if=$image of=$image conv=notrunc conv=sync bs=${floppysize}b count=1
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_suppressions.cc | 68 static const char *conv(ReportType typ) { function in namespace:__tsan 120 const char *stype = conv(typ); 139 const char *stype = conv(typ);
|
/src/sys/kern/ |
subr_devsw.c | 386 struct devsw_conv *conv; local in function:devsw_attach 396 conv = &devsw_conv[i]; 397 if (conv->d_name == NULL || strcmp(devname, conv->d_name) != 0) 401 *bmajor = conv->d_bmajor; 403 *cmajor = conv->d_cmajor; 405 if (*bmajor != conv->d_bmajor || *cmajor != conv->d_cmajor) { 436 * If we already found a conv, we're done. Otherwise, find an 990 struct devsw_conv *conv; local in function:devsw_name2blk 1038 struct devsw_conv *conv; local in function:devsw_name2chr [all...] |
/src/tests/bin/dd/ |
t_dd.sh | 72 "conv=ebcdic. Prior to revision 1.24 of dd's" \ 73 "args.c, the conv option would be ignored." 85 test_dd_io "unvis | dd conv=ebcdic 2>/dev/null | vis" \ 87 test_dd_io "unvis | dd conv=ebcdic ibs=512 2>/dev/null | vis" \ 89 test_dd_io "unvis | dd conv=ebcdic obs=512 2>/dev/null | vis" \ 91 test_dd_io "unvis | dd conv=ebcdic bs=512 2>/dev/null | vis" \ 94 test_dd_io "unvis | dd conv=ebcdic 2>/dev/null | vis" \ 96 test_dd_io "unvis | dd conv=ebcdic ibs=1 2>/dev/null | vis" \ 98 test_dd_io "unvis | dd conv=ebcdic obs=1 2>/dev/null | vis" \ 100 test_dd_io "unvis | dd conv=ebcdic bs=1 2>/dev/null | vis" [all...] |
/src/sys/fs/msdosfs/ |
msdosfs_conv.c | 391 int conv = 1; local in function:msdosfs_unix2dosfn 459 && conv != 3) 460 conv = 2; 462 conv = 3; 467 conv = 3; 485 && conv != 3) 486 conv = 2; 488 conv = 3; 493 conv = 3; 512 if (conv != 3) [all...] |
/src/tests/sbin/fsck_ffs/ |
t_check_quotas.sh | 48 count=8 "seek=${blkno}" conv=notrunc
|
t_enable_quotas.sh | 67 count=1 "seek=${blkno}" conv=notrunc
|
/src/distrib/vax/floppy/ |
Makefile | 36 dd if=${IMAGE}.tmp of=${IMAGE} bs=${IMAGESIZE} conv=sync
|
/src/sys/arch/evbppc/compile/ |
walnut-mkimg.sh | 75 dd if=${input}.hdr.$$ of=${output} conv=notrunc
|
/src/lib/libc/citrus/modules/ |
citrus_mapper_std.c | 91 u_int32_t conv; local in function:rowcol_convert 117 conv = _region_peek8(&rc->rc_table, idx); 120 conv = be16toh(_region_peek16(&rc->rc_table, idx*2)); 123 conv = be32toh(_region_peek32(&rc->rc_table, idx*4)); 129 if (conv == rc->rc_dst_invalid) { 133 if (conv == rc->rc_dst_ilseq) 136 *dst = conv;
|
/src/lib/libpam/modules/pam_radius/ |
pam_radius.c | 199 const struct pam_conv *conv; local in function:do_challenge 249 conv = (const struct pam_conv *)item; 250 if ((retval = conv->conv(num_msgs, msg_ptrs, &resp, 251 conv->appdata_ptr)) != PAM_SUCCESS)
|