| /freebsd/contrib/atf/atf-c/detail/ |
| H A D | map.c | 50 struct map_entry *me; in new_entry() local 52 me = (struct map_entry *)malloc(sizeof(*me)); in new_entry() 53 if (me != NULL) { in new_entry() 54 me->m_key = strdup(key); in new_entry() 55 if (me->m_key == NULL) { in new_entry() 56 free(me); in new_entry() 57 me = NULL; in new_entry() 59 me->m_value = value; in new_entry() 60 me->m_managed = managed; in new_entry() 64 return me; in new_entry() [all …]
|
| /freebsd/crypto/openssh/regress/ |
| H A D | allow-deny-users.sh | 7 me="$LOGNAME" 8 if [ "x$me" = "x" ]; then 9 me=`whoami` 26 ${SSH} -F $OBJ/ssh_proxy "$me@somehost" true 37 test_auth "$other $me" "" false "user in DenyUsers allowed" 38 test_auth "$me $other" "" false "user in DenyUsers allowed" 40 test_auth "" "$other $me" true "user in AllowUsers denied" 41 test_auth "" "$me $other" true "user in AllowUsers denied" 42 test_auth "$me $other" "$me $other" false "user in both DenyUsers and AllowUsers allowe… 43 test_auth "$other $me" "$other $me" false "user in both DenyUsers and AllowUsers allowe…
|
| /freebsd/stand/common/ |
| H A D | nvstore.c | 42 nvstore_usage(const char *me) in nvstore_usage() argument 44 printf("Usage:\t%s -l\n", me); in nvstore_usage() 45 printf("\t%s store -l\n", me); in nvstore_usage() 46 printf("\t%s store [-t type] key value\n", me); in nvstore_usage() 47 printf("\t%s store -g key\n", me); in nvstore_usage() 48 printf("\t%s store -d key\n", me); in nvstore_usage() 64 char *me, *name, *type; in command_nvstore() local 66 me = argv[0]; in command_nvstore() 97 nvstore_usage(me); in command_nvstore() 102 nvstore_usage(me); in command_nvstore() [all …]
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_write_set_format_mtree.c | 567 attr_counter_new(struct mtree_entry *me, struct attr_counter *prev) in attr_counter_new() argument 576 ac->m_entry = me; in attr_counter_new() 599 struct attr_counter *last, struct mtree_entry *me) in attr_counter_inc() argument 627 ac = attr_counter_new(me, last); in attr_counter_inc() 639 attr_counter_set_collect(struct mtree *mtree, struct mtree_entry *me) in attr_counter_set_collect() argument 647 acs->uid_list = attr_counter_new(me, NULL); in attr_counter_set_collect() 653 if (ac->m_entry->uid == me->uid) in attr_counter_set_collect() 657 if (attr_counter_inc(&acs->uid_list, ac, last, me) < 0) in attr_counter_set_collect() 663 acs->gid_list = attr_counter_new(me, NULL); in attr_counter_set_collect() 669 if (ac->m_entry->gid == me->gid) in attr_counter_set_collect() [all …]
|
| /freebsd/share/doc/psd/18.gprof/ |
| H A D | Makefile | 2 SRCS= header.me abstract.me intro.me profiling.me gathering.me \ 3 postp.me present.me refs.me 5 MACROS= -me
|
| /freebsd/crypto/krb5/src/plugins/kdb/ldap/ldap_util/ |
| H A D | kdb5_ldap_services.c | 96 char *me = progname; in kdb5_ldap_stash_service_password() local 123 com_err(me, ENOMEM, in kdb5_ldap_stash_service_password() 130 com_err(me, ENOMEM, in kdb5_ldap_stash_service_password() 141 com_err(me, ENOMEM, _("while setting service object password")); in kdb5_ldap_stash_service_password() 148 com_err(me, ret, _("while getting service password filename")); in kdb5_ldap_stash_service_password() 169 com_err(me, ret, _("while setting service object password")); in kdb5_ldap_stash_service_password() 175 printf(_("%s: Invalid password\n"), me); in kdb5_ldap_stash_service_password() 185 com_err(me, ret, _("Failed to convert the password to hexadecimal")); in kdb5_ldap_stash_service_password() 195 com_err(me, errno, _("Failed to open file %s: %s"), file_name, in kdb5_ldap_stash_service_password() 216 com_err(me, errno, in kdb5_ldap_stash_service_password() [all …]
|
| H A D | kdb5_ldap_policy.c | 95 char *me = progname; in kdb5_ldap_create_policy() local 129 com_err(me, retval, _("while providing time specification")); in kdb5_ldap_create_policy() 143 com_err(me, retval, _("while providing time specification")); in kdb5_ldap_create_policy() 268 com_err(me, retval, _("while creating policy object")); in kdb5_ldap_create_policy() 279 com_err(me, retval, _("while reading realm information")); in kdb5_ldap_create_policy() 304 com_err(me, retval, _("while creating policy object")); in kdb5_ldap_create_policy() 320 char *me = progname; in kdb5_ldap_destroy_policy() local 348 com_err(me, retval, _("while destroying policy object")); in kdb5_ldap_destroy_policy() 407 com_err(me, retval, _("while destroying policy object")); in kdb5_ldap_destroy_policy() 423 char *me = progname; in kdb5_ldap_modify_policy() local [all …]
|
| /freebsd/sys/dev/mem/ |
| H A D | memdev.c | 98 struct mem_extract *me; in memioctl() local 104 me = (struct mem_extract *)data; in memioctl() 108 if (vm_map_lookup_entry(map, me->me_vaddr, &entry)) { in memioctl() 109 me->me_paddr = pmap_extract( in memioctl() 110 &td->td_proc->p_vmspace->vm_pmap, me->me_vaddr); in memioctl() 111 if (me->me_paddr != 0) { in memioctl() 112 me->me_state = ME_STATE_MAPPED; in memioctl() 113 me->me_domain = vm_phys_domain(me->me_paddr); in memioctl() 115 me->me_state = ME_STATE_VALID; in memioctl() 118 me->me_state = ME_STATE_INVALID; in memioctl()
|
| /freebsd/crypto/openssl/crypto/bn/ |
| H A D | bn_s390x.c | 26 struct ica_rsa_modexpo me; in s390x_mod_exp_hw() local 37 me.inputdata = buffer; in s390x_mod_exp_hw() 38 me.inputdatalength = size; in s390x_mod_exp_hw() 39 me.outputdata = buffer + size; in s390x_mod_exp_hw() 40 me.outputdatalength = size; in s390x_mod_exp_hw() 41 me.b_key = buffer + 2 * size; in s390x_mod_exp_hw() 42 me.n_modulus = buffer + 3 * size; in s390x_mod_exp_hw() 43 if (BN_bn2binpad(a, me.inputdata, size) == -1 in s390x_mod_exp_hw() 44 || BN_bn2binpad(p, me.b_key, size) == -1 in s390x_mod_exp_hw() 45 || BN_bn2binpad(m, me.n_modulus, size) == -1) in s390x_mod_exp_hw() [all …]
|
| /freebsd/libexec/rc/ |
| H A D | rc.firewall | 208 ${fwcmd} add pass all from me to ${net} 209 ${fwcmd} add pass all from ${net} to me 211 ${fwcmd} add pass all from me to ${net6} 212 ${fwcmd} add pass all from ${net6} to me 217 ${fwcmd} add pass udp from fe80::/10 to me 546 227 ${fwcmd} add pass tcp from any to me 25 setup 230 ${fwcmd} add pass tcp from me to any setup 236 ${fwcmd} add pass udp from me to any 53 keep-state 239 ${fwcmd} add pass udp from me to any 123 keep-state 373 ${fwcmd} add pass tcp from any to me 25 setup [all …]
|
| /freebsd/tests/sys/capsicum/ |
| H A D | Makefile | 43 .for p in mini-me mini-me.noexec mini-me.setuid 46 SRCS.$p= mini-me.c 52 CFLAGS.mini-me.c+= -fno-sanitize=address -fno-sanitize=undefined 57 BINMODE.mini-me.noexec= ${NOBINMODE} 58 BINMODE.mini-me.setuid= 4555
|
| /freebsd/contrib/file/src/ |
| H A D | apprentice.c | 92 struct magic_entry *me; member 1297 addentry(struct magic_set *ms, struct magic_entry *me, in addentry() argument 1300 size_t i = me->mp->type == FILE_NAME ? 1 : 0; in addentry() 1301 if (mset[i].me == NULL || mset[i].count == mset[i].max) { in addentry() 1306 realloc(mset[i].me, sizeof(*mp) * incr))) == in addentry() 1313 mset[i].me = mp; in addentry() 1317 mset[i].me[mset[i].count++] = *me; in addentry() 1318 memset(me, 0, sizeof(*me)); in addentry() 1332 struct magic_entry me; in load_1() local 1343 memset(&me, 0, sizeof(me)); in load_1() [all …]
|
| /freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | callb.c | 201 callb_t *me = (callb_t *)id; in callb_delete() local 206 pp = &ct->ct_first_cb[me->c_class]; in callb_delete() 207 while (*pp != NULL && *pp != me) in callb_delete() 211 if (*pp != me) { in callb_delete() 213 (void *)me); in callb_delete() 223 if (!(me->c_flag & CALLB_EXECUTING)) in callb_delete() 226 cv_wait(&me->c_done_cv, &ct->ct_lock); in callb_delete() 229 *pp = me->c_next; in callb_delete() 232 me->c_flag = CALLB_FREE; in callb_delete() 233 me->c_next = ct->ct_freelist; in callb_delete() [all …]
|
| /freebsd/contrib/ntp/ntpsnmpd/ |
| H A D | ntpsnmpd-opts.def | 92 please fill me in... 94 please fill me in... 96 please fill me in... 98 please fill me in... 100 please fill me in... 102 please fill me in... 104 please fill me in... 106 please fill me in... 108 please fill me in... 110 please fill me in...
|
| /freebsd/share/doc/usd/20.meref/ |
| H A D | Makefile | 2 SRCS= meref.me-sed 3 MACROS= -me 10 meref.me-sed: meref.me
|
| /freebsd/share/doc/usd/19.memacros/ |
| H A D | Makefile | 2 SRCS= meintro.me-sed 3 MACROS= -me 10 meintro.me-sed: meintro.me
|
| /freebsd/contrib/libexecinfo/ |
| H A D | symtab.c | 188 uintptr_t dd, sd, me = (uintptr_t)p - fbase; in symtab_find() local 193 __func__, (uintmax_t)fbase, dli->dli_saddr, (uintmax_t)me, in symtab_find() 197 if (s[mid].st_value < me) in symtab_find() 199 else if (s[mid].st_value > me) in symtab_find() 209 dd = me - ad; in symtab_find() 210 sd = me - s[mid].st_value; in symtab_find() 216 (uintmax_t)me, (uintmax_t)sd, dli->dli_sname); in symtab_find() 222 (uintmax_t)me, (uintmax_t)sd); in symtab_find()
|
| /freebsd/contrib/tcsh/nls/french/ |
| H A D | set2 | 11 9 Plantage système imminent 22 20 Appel système incorrect 43 41 Arrêt du système imminent 71 69 Deuxième signal temps réel 72 70 Troisième signal temps réel 73 71 Quatrième signal temps réel 74 72 Quatrième signal temps réel avant la fin 75 73 Antépénultième signal temps réel
|
| /freebsd/sys/contrib/openzfs/module/icp/core/ |
| H A D | kcf_prov_tabs.c | 274 kcf_mech_entry_t *me; in kcf_get_sw_prov() local 277 if (kcf_get_mech_entry(mech_type, &me) != KCF_SUCCESS) in kcf_get_sw_prov() 281 if (me->me_sw_prov == NULL || in kcf_get_sw_prov() 282 (*pd = me->me_sw_prov->pm_prov_desc) == NULL) { in kcf_get_sw_prov() 286 me->me_name); in kcf_get_sw_prov() 293 *mep = me; in kcf_get_sw_prov()
|
| /freebsd/crypto/krb5/src/clients/kinit/ |
| H A D | kinit.c | 124 krb5_principal me; member 460 &k5->me); in k5_begin() 473 ret = krb5_build_principal_ext(k5->ctx, &k5->me, in k5_begin() 492 ret = k5_kt_get_principal(k5->ctx, keytab, &k5->me); in k5_begin() 502 &k5->me); in k5_begin() 511 k5->me = princ; in k5_begin() 517 k5->me = defcache_princ; in k5_begin() 522 if (k5->me == NULL) { in k5_begin() 528 ret = krb5_parse_name_flags(k5->ctx, name, flags, &k5->me); in k5_begin() 537 ret = krb5_cc_cache_match(k5->ctx, k5->me, &k5->out_cc); in k5_begin() [all …]
|
| /freebsd/crypto/krb5/src/windows/leashdll/ |
| H A D | krb5routines.c | 89 krb5_principal me = 0; in LeashKRB5_renew() local 105 code = pkrb5_cc_get_principal(ctx, cc, &me); in LeashKRB5_renew() 108 realm = krb5_princ_realm(ctx, me); in LeashKRB5_renew() 117 my_creds.client = me; in LeashKRB5_renew() 121 code = pkrb5_get_renewed_creds(ctx, &my_creds, me, cc, NULL); in LeashKRB5_renew() 130 code = pkrb5_cc_initialize(ctx, cc, me); in LeashKRB5_renew() 137 if (my_creds.client == me) in LeashKRB5_renew() 142 if (me) in LeashKRB5_renew() 143 pkrb5_free_principal(ctx, me); in LeashKRB5_renew() 178 krb5_principal me = 0; in Leash_krb5_kinit() local [all …]
|
| /freebsd/crypto/krb5/src/lib/gssapi/generic/ |
| H A D | util_errmap.c | 173 struct mecherror me, me_copy; in gssint_mecherrmap_map() local 188 me.code = minor; in gssint_mecherrmap_map() 189 me.mech = *oid; in gssint_mecherrmap_map() 193 p = mecherrmap_findright(&m, me); in gssint_mecherrmap_map() 198 mecherror_print(me, f); in gssint_mecherrmap_map() 222 err = mecherror_copy(&me_copy, me); in gssint_mecherrmap_map() 233 mecherror_print(me, f); in gssint_mecherrmap_map()
|
| /freebsd/tools/regression/p1003_1b/ |
| H A D | sched.c | 241 pid_t me; in sched() local 245 if ((me = fork()) != 0) in sched() 268 *lastrun = me; in sched() 271 if (*lastrun == me) in sched() 276 if (!me || rt_param.sched_priority != 0) in sched() 280 (long)me, rt_param.sched_priority + 1); in sched()
|
| /freebsd/usr.sbin/cron/doc/ |
| H A D | THANKS | 5 Rich Salz and Carl Gutekunst were each of enormous help to me in V1; Carl for 6 helping me understand UNIX well enough to write it, and Rich for helping me 9 John Gilmore wrote me a wonderful review of V2, which took me a whole year to 10 answer even though it made me clean up some really awful things in the code.
|
| /freebsd/contrib/ntp/sntp/libevent/build-aux/ |
| H A D | ar-lib | 4 me=ar-lib 36 echo "$me: $1" 1>&2 105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...] 112 echo "$me, version $scriptversion" 236 echo "$me: creating $orig_archive"
|