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 },
345 errx(EXIT_FAILURE, "conv option disabled");
350 static const struct conv { struct
379 const struct conv *cp;
380 struct conv tmp;
404 return (strcmp(((const struct conv *)a)->name,
405 ((const struct conv *)b)->name));
  /src/lib/libc/citrus/modules/
citrus_mapper_std.c 91 u_int32_t conv; local
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/libedit/
search.c 117 static ct_buffer_t conv; local
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;
577 static ct_buffer_t conv; local
579 c, el->el_search.patlen, ct_encode_string(el->el_search.patbuf, &conv));
history.c 783 static ct_buffer_t conv; local
814 decode_result = ct_decode_string(ptr, &conv);
843 static ct_buffer_t conv; local
862 str = ct_encode_string(ev.str, &conv);
  /src/lib/libpam/modules/pam_radius/
pam_radius.c 199 const struct pam_conv *conv; local
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
566 e = pam_start("telnetd", name, &conv, &pamh);
  /src/sys/fs/msdosfs/
msdosfs_conv.c 391 int conv = 1; local
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
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
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
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
    [all...]
ftpd.c 3899 struct pam_conv conv = { &auth_conv, &auth_cred }; local
3902 e = pam_start("ftpd", curname, &conv, &pamh);
  /src/sys/kern/
subr_devsw.c 388 struct devsw_conv *conv; local
398 conv = &devsw_conv[i];
399 if (conv->d_name == NULL || strcmp(devname, conv->d_name) != 0)
403 *bmajor = conv->d_bmajor;
405 *cmajor = conv->d_cmajor;
407 if (*bmajor != conv->d_bmajor || *cmajor != conv->d_cmajor) {
438 * If we already found a conv, we're done. Otherwise, find an
992 struct devsw_conv *conv; local
1040 struct devsw_conv *conv; local
    [all...]

Completed in 30 milliseconds