Home
last modified time | relevance | path

Searched refs:retval (Results 101 – 125 of 752) sorted by relevance

12345678910>>...31

/freebsd/usr.sbin/bsdinstall/scripts/
H A Dauto218 f_dprintf "lenovofix_prompt=[%s]" "$retval"
219 if [ $retval -eq $DIALOG_OK ]; then
231 f_dprintf "gpt_active_fix_prompt=[%s]" "$retval"
232 if [ $retval -eq $DIALOG_OK ]; then
244 f_dprintf "gpt_active_fix_prompt=[%s]" "$retval"
245 if [ $retval -eq $DIALOG_OK ]; then
262 f_dprintf "gpt_active_fix_prompt=[%s]" "$retval"
263 if [ $retval -eq $DIALOG_OK ]; then
275 f_dprintf "gpt_active_fix_prompt=[%s]" "$retval"
276 if [ $retval -eq $DIALOG_OK ]; then
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp259 void *retval = (*args.routine)(args.arg_retval); in HwasanThreadStartFunc() local
260 hwasanThreadArgRetval().Finish(self, retval); in HwasanThreadStartFunc()
261 return retval; in HwasanThreadStartFunc()
296 result = REAL(pthread_join)(thread, retval); in INTERCEPTOR()
311 INTERCEPTOR(void, pthread_exit, void *retval) { in INTERCEPTOR() argument
312 hwasanThreadArgRetval().Finish(GetThreadSelf(), retval); in INTERCEPTOR()
313 REAL(pthread_exit)(retval); in INTERCEPTOR()
356 InternalLongjmp(__hw_register_buf env, int retval) { in InternalLongjmp() argument
378 register long int retval_tmp asm("x1") = retval; in InternalLongjmp()
402 register long int retval_tmp asm("%rsi") = retval; in InternalLongjmp()
[all …]
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatCache.cpp27 void FormatCache::Entry::Get(lldb::TypeFormatImplSP &retval) { in Get() argument
28 retval = m_format_sp; in Get()
31 void FormatCache::Entry::Get(lldb::TypeSummaryImplSP &retval) { in Get() argument
32 retval = m_summary_sp; in Get()
35 void FormatCache::Entry::Get(lldb::SyntheticChildrenSP &retval) { in Get() argument
36 retval = m_synthetic_sp; in Get()
/freebsd/crypto/openssh/
H A Dgss-serv-krb5.c88 int retval; in ssh_gssapi_krb5_userok() local
94 if ((retval = krb5_parse_name(krb_context, client->exportedname.value, in ssh_gssapi_krb5_userok()
96 errmsg = krb5_get_error_message(krb_context, retval); in ssh_gssapi_krb5_userok()
102 retval = 1; in ssh_gssapi_krb5_userok()
106 retval = 0; in ssh_gssapi_krb5_userok()
109 return retval; in ssh_gssapi_krb5_userok()
/freebsd/usr.sbin/fstyp/
H A Dapfs.c85 int retval; in fstyp_apfs() local
87 retval = 1; in fstyp_apfs()
98 retval = 0; in fstyp_apfs()
106 return (retval); in fstyp_apfs()
/freebsd/lib/libc/net/
H A Dnscache.c48 __nss_cache_handler(void *retval, void *mdata, va_list ap) in __nss_cache_handler() argument
54 __nss_common_cache_read(void *retval, void *mdata, va_list ap) in __nss_common_cache_read() argument
133 res = cache_info->unmarshal_func(buffer, buffer_size, retval, in __nss_common_cache_read()
158 __nss_common_cache_write(void *retval, void *mdata, va_list ap) in __nss_common_cache_write() argument
195 res = cache_info->marshal_func(buffer, &size, retval, ap_new, in __nss_common_cache_write()
260 __nss_mp_cache_read(void *retval, void *mdata, va_list ap) in __nss_mp_cache_read() argument
306 res = cache_info->unmarshal_func(buffer, buffer_size, retval, in __nss_mp_cache_read()
328 __nss_mp_cache_write(void *retval, void *mdata, va_list ap) in __nss_mp_cache_write() argument
366 res = cache_info->marshal_func(buffer, &size, retval, ap_new, in __nss_mp_cache_write()
392 __nss_mp_cache_write_submit(void *retval, void *mdata, va_list ap) in __nss_mp_cache_write_submit() argument
[all …]
/freebsd/usr.sbin/nscd/
H A Dquery.c1231 retval = calloc(1, sizeof(*retval)); in init_query_state()
1232 assert(retval != NULL); in init_query_state()
1234 retval->sockfd = sockfd; in init_query_state()
1238 retval->euid = euid; in init_query_state()
1239 retval->egid = egid; in init_query_state()
1240 retval->uid = retval->gid = -1; in init_query_state()
1242 if (asprintf(&retval->eid_str, "%d_%d_", retval->euid, in init_query_state()
1243 retval->egid) == -1) { in init_query_state()
1244 free(retval); in init_query_state()
1247 retval->eid_str_length = strlen(retval->eid_str); in init_query_state()
[all …]
H A Dagent.c59 struct agent_table *retval; in init_agent_table() local
62 retval = calloc(1, sizeof(*retval)); in init_agent_table()
63 assert(retval != NULL); in init_agent_table()
66 return (retval); in init_agent_table()
/freebsd/bin/sh/
H A Dhistedit.c255 int i, retval; in histcmd() local
402 for (;retval != -1; retval = history(hist, &he, direction)) { in histcmd()
499 int i, retval; in str_to_event() local
501 retval = history(hist, &he, H_FIRST); in str_to_event()
512 while (retval != -1 && i--) { in str_to_event()
513 retval = history(hist, &he, H_NEXT); in str_to_event()
515 if (retval == -1) in str_to_event()
516 retval = history(hist, &he, H_LAST); in str_to_event()
519 if (retval == -1) { in str_to_event()
527 if (retval == -1) in str_to_event()
[all …]
/freebsd/sys/cam/
H A Dcam_xpt.c322 int retval; in xpt_schedule_devq() local
333 retval = in xpt_schedule_devq()
338 retval = 0; in xpt_schedule_devq()
2131 int retval; in xptbustraverse() local
2133 retval = 1; in xptbustraverse()
2167 int retval; in xpttargettraverse() local
2169 retval = 1; in xpttargettraverse()
2204 int retval; in xptdevicetraverse() local
2206 retval = 1; in xptdevicetraverse()
2244 int retval; in xptperiphtraverse() local
[all …]
/freebsd/contrib/unbound/contrib/
H A Dunbound.init_fedora50 retval=$?
51 [ $retval -eq 0 ] && touch $lockfile
59 retval=$?
60 [ $retval -eq 0 ] && rm -f $lockfile
61 [ $retval -eq 0 ] && rm -f $pidfile
/freebsd/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_conf.l345 if ((yylval.retval = malloc(sizeof(returns_t))) == NULL)
349 if ((yylval.retval->return_value = dequote(p, &len))
353 yylval.retval->return_type = ret_byte;
355 yylval.retval->return_len = len - 1;
365 if ((yylval.retval = malloc(sizeof(returns_t))) == NULL)
376 if ((yylval.retval->return_value = malloc(chlen))
380 rv = yylval.retval->return_value;
384 yylval.retval->return_type = ret_byte;
385 yylval.retval->return_len = chlen;
/freebsd/contrib/openbsm/bin/praudit/
H A Dpraudit.c129 int retval; in main() local
192 retval = cap_enter(); in main()
193 if (retval != 0 && errno != ENOSYS) in main()
216 retval = cap_enter(); in main()
217 if (retval != 0 && errno != ENOSYS) in main()
/freebsd/sys/dev/ocs_fc/
H A Docs_domain.c1412 retval = 0; in ocs_mgmt_domain_get()
1415 retval = 0; in ocs_mgmt_domain_get()
1418 retval = 0; in ocs_mgmt_domain_get()
1421 retval = 0; in ocs_mgmt_domain_get()
1424 retval = 0; in ocs_mgmt_domain_get()
1427 retval = 0; in ocs_mgmt_domain_get()
1430 retval = 0; in ocs_mgmt_domain_get()
1433 retval = 0; in ocs_mgmt_domain_get()
1436 retval = 0; in ocs_mgmt_domain_get()
1440 retval = 0; in ocs_mgmt_domain_get()
[all …]
/freebsd/contrib/bsddialog/lib/
H A Dbarbox.c356 int retval; in bsddialog_mixedgauge() local
361 return (retval); in bsddialog_mixedgauge()
370 int perc, retval, *minipercs; in bsddialog_progressview() local
389 retval = BSDDIALOG_OK; in bsddialog_progressview()
440 return (retval); in bsddialog_progressview()
509 retval = BUTTONVALUE(d.bs); in bsddialog_rangebox()
514 retval = BSDDIALOG_ESC; in bsddialog_rangebox()
594 return (retval); in bsddialog_rangebox()
623 int retval, tout; in bsddialog_pause() local
669 retval = BSDDIALOG_ESC; in bsddialog_pause()
[all …]
/freebsd/sys/dev/mpi3mr/
H A Dmpi3mr_cam.c604 if (retval) { in mpi3mr_issue_tm()
607 retval = -1; in mpi3mr_issue_tm()
614 retval = -1; in mpi3mr_issue_tm()
631 retval = -1; in mpi3mr_issue_tm()
647 retval = -1; in mpi3mr_issue_tm()
657 retval = -1; in mpi3mr_issue_tm()
660 retval = -1; in mpi3mr_issue_tm()
669 if (retval) in mpi3mr_issue_tm()
683 retval = -1; in mpi3mr_issue_tm()
896 if (!retval || (retval == ETIMEDOUT)) in mpi3mr_scsiio_timeout()
[all …]
/freebsd/lib/libc/gen/
H A Disatty.c38 int retval; in isatty() local
41 retval = (tcgetattr(fd, &t) != -1); in isatty()
42 return(retval); in isatty()
/freebsd/lib/libc/stdio/
H A Dfgetc.c44 int retval; in fgetc() local
48 retval = __sgetc(fp); in fgetc()
50 return (retval); in fgetc()
H A Dgetchar.c50 int retval; in getchar() local
54 retval = __sgetc(stdin); in getchar()
56 return (retval); in getchar()
/freebsd/sys/cam/ctl/
H A Dctl_frontend_ioctl.c175 int retval; in cfi_ioctl_port_create() local
219 retval = ctl_port_register(port); in cfi_ioctl_port_create()
220 if (retval != 0) { in cfi_ioctl_port_create()
241 if (retval != 0) { in cfi_ioctl_port_create()
244 "make_dev_s() failed with error %d", retval); in cfi_ioctl_port_create()
511 int done, retval; in cfi_submit_wait() local
525 return (retval); in cfi_submit_wait()
593 int retval = 0; in ctl_ioctl_io() local
637 retval = cfi_submit_wait(io); in ctl_ioctl_io()
638 if (retval == 0) in ctl_ioctl_io()
[all …]
/freebsd/lib/libpam/modules/pam_nologin/
H A Dpam_nologin.c65 int retval, fd; in pam_sm_acct_mgmt() local
70 retval = pam_get_user(pamh, &user, NULL); in pam_sm_acct_mgmt()
71 if (retval != PAM_SUCCESS) in pam_sm_acct_mgmt()
72 return (retval); in pam_sm_acct_mgmt()
/freebsd/sbin/fsck_msdosfs/
H A Dfat.c224 cl_t retval; in fat_get_fat12_next() local
227 retval = le16dec(p); in fat_get_fat12_next()
230 retval >>= 4; in fat_get_fat12_next()
236 return (retval); in fat_get_fat12_next()
281 cl_t retval; in fat_get_fat16_next() local
289 return (retval); in fat_get_fat16_next()
320 cl_t retval; in fat_get_fat32_next() local
328 return (retval); in fat_get_fat32_next()
462 cl_t retval; in fat_get_fat32_cached_next() local
470 retval = CLUST_DEAD; in fat_get_fat32_cached_next()
[all …]
/freebsd/sys/dev/liquidio/base/
H A Dlio_ctrl.c119 int retval; in lio_send_ctrl_pkt() local
141 retval = lio_send_soft_command(oct, sc); in lio_send_ctrl_pkt()
142 if (retval == LIO_IQ_SEND_FAILED) { in lio_send_ctrl_pkt()
145 __func__, oct->pf_num, nctrl->ncmd.s.cmd, retval); in lio_send_ctrl_pkt()
151 return (retval); in lio_send_ctrl_pkt()
/freebsd/lib/libc/posix1e/
H A Dacl_get.c159 uid_t *retval; in acl_get_qualifier() local
169 retval = malloc(sizeof(uid_t)); in acl_get_qualifier()
170 if (retval == NULL) in acl_get_qualifier()
172 *retval = entry_d->ae_id; in acl_get_qualifier()
173 return (retval); in acl_get_qualifier()
/freebsd/contrib/file/src/
H A Dasprintf.c38 int retval; in asprintf() local
41 retval = vasprintf(ptr, fmt, vargs); in asprintf()
44 return retval; in asprintf()

12345678910>>...31