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

  /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/bin/dd/
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/lib/libedit/
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));
history.c 783 static ct_buffer_t conv; local in function:history_load
814 decode_result = ct_decode_string(ptr, &conv);
843 static ct_buffer_t conv; local in function:history_save_fp
862 str = ct_encode_string(ev.str, &conv);
  /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)
  /src/lib/libtelnet/
sra.c 564 struct pam_conv conv = { &auth_conv, &auth_cred }; local in function:check_user
566 e = pam_start("telnetd", name, &conv, &pamh);
  /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/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...]
ftpd.c 3899 struct pam_conv conv = { &auth_conv, &auth_cred }; local in function:auth_pam
3902 e = pam_start("ftpd", curname, &conv, &pamh);
  /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...]

Completed in 55 milliseconds