Home
last modified time | relevance | path

Searched refs:mval (Results 1 – 16 of 16) sorted by relevance

/NextBSD/usr.sbin/ppp/
HDmppe.c515 u_int32_t mval; in MPPEInitOptsOutput() local
522 mval = 0; in MPPEInitOptsOutput()
523 ua_htonl(&mval, o->data); in MPPEInitOptsOutput()
528 mval = MPPE_ConfigVal(bundle, cfg); in MPPEInitOptsOutput()
529 ua_htonl(&mval, o->data); in MPPEInitOptsOutput()
539 u_int32_t mval, peer; in MPPESetOptsOutput() local
547 mval = MPPE_ConfigVal(bundle, cfg); in MPPESetOptsOutput()
554 mval &= ~MPPE_OPT_BITMASK; in MPPESetOptsOutput()
555 mval |= (peer & MPPE_OPT_BITMASK); in MPPESetOptsOutput()
556 if (!(mval & MPPE_OPT_BITMASK)) in MPPESetOptsOutput()
[all …]
/NextBSD/lib/libc/rpc/
HDgetpublickey.c96 char *mval; in getpublicandprivatekey() local
149 mval = strsep(&res, " \t#\n"); in getpublicandprivatekey()
150 } while (mval != NULL && !*mval); in getpublicandprivatekey()
151 if (mval == NULL) { in getpublicandprivatekey()
157 strcpy(ret, mval); in getpublicandprivatekey()
HDnetnamer.c238 char *mval; in getnetid() local
304 mval = strsep(&res, " \t#\n"); in getnetid()
305 } while (mval != NULL && !*mval); in getnetid()
306 if (mval == NULL) { in getnetid()
312 strcpy(ret, mval); in getnetid()
/NextBSD/usr.bin/last/
HDlast.c465 char *mval; in ttyconv() local
473 if ((mval = malloc(8)) == NULL) in ttyconv()
476 (void)strcpy(mval, "console"); in ttyconv()
478 (void)strcpy(mval, "tty"); in ttyconv()
479 (void)strcpy(mval + 3, arg); in ttyconv()
481 return (mval); in ttyconv()
/NextBSD/usr.sbin/asl/
HDdaemon.c918 char *p, *colon, *brace, *space, *tmp, *tval, *hval, *sval, *pval, *mval; in asl_syslog_input_convert() local
935 mval = NULL; in asl_syslog_input_convert()
1080 mval = malloc(n + 1); in asl_syslog_input_convert()
1081 if (mval == NULL) return NULL; in asl_syslog_input_convert()
1083 memcpy(mval, p, n); in asl_syslog_input_convert()
1084 mval[n] = '\0'; in asl_syslog_input_convert()
1117 if (mval != NULL) in asl_syslog_input_convert()
1119 asl_msg_set_key_val(msg, ASL_KEY_MSG, mval); in asl_syslog_input_convert()
1120 free(mval); in asl_syslog_input_convert()
HDdbserver.c820 const char *mval; in syslogd_state_query() local
1000 if (0 == asl_msg_lookup(q, "action", &mval, NULL)) in syslogd_state_query()
1003 if (uid == 0) res = asl_action_control_set_param(mval); in syslogd_state_query()
/NextBSD/sys/dev/ata/chipsets/
HData-siliconimage.c352 int mval = pci_read_config(parent, mreg, 1) & ~mask; in ata_sii_setmode() local
375 mval | (0x03 << (target << 2)), 1); in ata_sii_setmode()
382 mval | (0x02 << (target << 2)), 1); in ata_sii_setmode()
388 mval | (0x01 << (target << 2)), 1); in ata_sii_setmode()
/NextBSD/crypto/openssl/apps/
HDreq.c147 unsigned long chtype, int mval);
1141 int nid, mval; in prompt_info() local
1189 mval = -1; in prompt_info()
1192 mval = 0; in prompt_info()
1226 n_min, n_max, chtype, mval)) in prompt_info()
1314 int mval; local
1340 mval = -1;
1342 mval = 0;
1345 mval))
1367 unsigned long chtype, int mval) argument
[all …]
HDapps.c2139 int *mval = OPENSSL_malloc(max_ne * sizeof(int)); in parse_name() local
2147 if (!buf || !ne_types || !ne_values || !mval) { in parse_name()
2159 mval[ne_num] = 0; in parse_name()
2200 mval[ne_num + 1] = 0; in parse_name()
2207 mval[ne_num + 1] = -1; in parse_name()
2235 (n, nid, chtype, (unsigned char *)ne_values[i], -1, -1, mval[i])) in parse_name()
2242 OPENSSL_free(mval); in parse_name()
2251 if (mval) in parse_name()
2252 OPENSSL_free(mval); in parse_name()
/NextBSD/lib/libasl/
HDasl_msg.c2452 const char *mval, *nano; in _asl_string_append_value_for_key_format() local
2481 status = asl_msg_lookup(msg, key, &mval, NULL); in _asl_string_append_value_for_key_format()
2482 if ((status != 0) || (mval == NULL)) return str; in _asl_string_append_value_for_key_format()
2491 fval = _asl_time_string(tfmt, mval, nano); in _asl_string_append_value_for_key_format()
2495 fval = _asl_time_string(fmt, mval, nano); in _asl_string_append_value_for_key_format()
2516 asl_string_append_no_encoding(str, mval); in _asl_string_append_value_for_key_format()
2520 mval = _asl_level_string(atoi(mval)); in _asl_string_append_value_for_key_format()
2521 asl_string_append_no_encoding(str, mval); in _asl_string_append_value_for_key_format()
2525 mval = _asl_level_char(atoi(mval)); in _asl_string_append_value_for_key_format()
2526 asl_string_append_no_encoding(str, mval); in _asl_string_append_value_for_key_format()
[all …]
HDasl_memory.c771 mem_string_t *mkey, *mval; in asl_memory_query_to_record() local
1107 mval = asl_memory_string_retain(s, val, 0); in asl_memory_query_to_record()
1126 out->kvlist[out->kvcount++] = mval; in asl_memory_query_to_record()
/NextBSD/lib/libc/resolv/
HDres_debug.c776 unsigned int mval = 0, cmval = 0; in precsize_aton() local
785 mval = mval * 10 + (*cp++ - '0'); in precsize_aton()
796 cmval = (mval * 100) + cmval; in precsize_aton()
/NextBSD/crypto/openssl/crypto/cms/
HDcms_sd.c818 unsigned char mval[EVP_MAX_MD_SIZE]; in CMS_SignerInfo_verify_content() local
836 if (EVP_DigestFinal_ex(&mctx, mval, &mlen) <= 0) { in CMS_SignerInfo_verify_content()
851 if (memcmp(mval, os->data, mlen)) { in CMS_SignerInfo_verify_content()
870 si->signature->length, mval, mlen); in CMS_SignerInfo_verify_content()
/NextBSD/crypto/openssl/crypto/x509v3/
HDv3_utl.c1309 int i, mval; in X509V3_NAME_from_section() local
1339 mval = -1; in X509V3_NAME_from_section()
1342 mval = 0; in X509V3_NAME_from_section()
1345 mval)) in X509V3_NAME_from_section()
/NextBSD/sys/compat/linux/
HDlinux_futex.c1148 uint32_t uval, nval, mval; in handle_futex_death() local
1162 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED; in handle_futex_death()
1163 nval = casuword32(uaddr, uval, mval); in handle_futex_death()
/NextBSD/contrib/binutils/bfd/
HDlinker.c1822 bfd_vma mval = 0; in _bfd_generic_link_add_one_symbol() local
1828 mval = h->u.def.value; in _bfd_generic_link_add_one_symbol()
1832 mval = 0; in _bfd_generic_link_add_one_symbol()
1843 && value == mval) in _bfd_generic_link_add_one_symbol()
1847 (info, h->root.string, msec->owner, msec, mval, in _bfd_generic_link_add_one_symbol()