Home
last modified time | relevance | path

Searched refs:me (Results 1 – 25 of 444) sorted by relevance

12345678910>>...18

/freebsd-14-stable/crypto/openssh/regress/
HDallow-deny-users.sh7 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-14-stable/stand/common/
HDnvstore.c42 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-14-stable/contrib/capsicum-test/
HDmakefile1 all: capsicum-test smoketest mini-me mini-me.noexec mini-me.setuid $(EXTRA_PROGS)
16 mini-me: mini-me.c
18 mini-me.noexec: mini-me
19 cp mini-me $@ && chmod -x $@
20 mini-me.setuid: mini-me
21 rm -f $@ && cp mini-me $@&& sudo chown root $@ && sudo chmod u+s $@
28 test: capsicum-test mini-me mini-me.noexec mini-me.setuid $(EXTRA_PROGS)
36 …rm -rf gtest-all.o libgtest.a capsicum-test mini-me mini-me.noexec smoketest $(SMOKETEST_OBJECTS) …
HDGNUmakefile62 EXTRA_PROGS = mini-me.32 mini-me.64
64 EXTRA_PROGS += mini-me.x32
77 mini-me.32: mini-me.c
79 mini-me.x32: mini-me.c
81 mini-me.64: mini-me.c
HD.gitignore2 mini-me
3 mini-me.noexec
4 mini-me.setuid
5 mini-me.32
6 mini-me.x32
7 mini-me.64
/freebsd-14-stable/share/doc/psd/18.gprof/
HDMakefile4 SRCS= header.me abstract.me intro.me profiling.me gathering.me \
5 postp.me present.me refs.me
7 MACROS= -me
/freebsd-14-stable/contrib/libarchive/libarchive/
HDarchive_write_set_format_mtree.c566 attr_counter_new(struct mtree_entry *me, struct attr_counter *prev) in attr_counter_new() argument
575 ac->m_entry = me; in attr_counter_new()
598 struct attr_counter *last, struct mtree_entry *me) in attr_counter_inc() argument
626 ac = attr_counter_new(me, last); in attr_counter_inc()
638 attr_counter_set_collect(struct mtree_writer *mtree, struct mtree_entry *me) in attr_counter_set_collect() argument
646 acs->uid_list = attr_counter_new(me, NULL); in attr_counter_set_collect()
652 if (ac->m_entry->uid == me->uid) in attr_counter_set_collect()
656 if (attr_counter_inc(&acs->uid_list, ac, last, me) < 0) in attr_counter_set_collect()
662 acs->gid_list = attr_counter_new(me, NULL); in attr_counter_set_collect()
668 if (ac->m_entry->gid == me->gid) in attr_counter_set_collect()
[all …]
/freebsd-14-stable/sys/dev/mem/
HDmemdev.c99 struct mem_extract *me; in memioctl() local
105 me = (struct mem_extract *)data; in memioctl()
109 if (vm_map_lookup_entry(map, me->me_vaddr, &entry)) { in memioctl()
110 me->me_paddr = pmap_extract( in memioctl()
111 &td->td_proc->p_vmspace->vm_pmap, me->me_vaddr); in memioctl()
112 if (me->me_paddr != 0) { in memioctl()
113 me->me_state = ME_STATE_MAPPED; in memioctl()
114 me->me_domain = vm_phys_domain(me->me_paddr); in memioctl()
116 me->me_state = ME_STATE_VALID; in memioctl()
119 me->me_state = ME_STATE_INVALID; in memioctl()
/freebsd-14-stable/libexec/rc/
HDrc.firewall219 ${fwcmd} add pass all from me to ${net}
220 ${fwcmd} add pass all from ${net} to me
222 ${fwcmd} add pass all from me to ${net6}
223 ${fwcmd} add pass all from ${net6} to me
228 ${fwcmd} add pass udp from fe80::/10 to me 546
238 ${fwcmd} add pass tcp from any to me 25 setup
241 ${fwcmd} add pass tcp from me to any setup
247 ${fwcmd} add pass udp from me to any 53 keep-state
250 ${fwcmd} add pass udp from me to any 123 keep-state
388 ${fwcmd} add pass tcp from any to me 25 setup
[all …]
/freebsd-14-stable/tests/sys/capsicum/
HDMakefile44 .for p in mini-me mini-me.noexec mini-me.setuid
47 SRCS.$p= mini-me.c
53 CFLAGS.mini-me.c+= -fno-sanitize=address -fno-sanitize=undefined
58 BINMODE.mini-me.noexec= ${NOBINMODE}
59 BINMODE.mini-me.setuid= 4555
/freebsd-14-stable/contrib/file/src/
HDapprentice.c97 struct magic_entry *me; member
1299 addentry(struct magic_set *ms, struct magic_entry *me, in addentry() argument
1302 size_t i = me->mp->type == FILE_NAME ? 1 : 0; in addentry()
1303 if (mset[i].me == NULL || mset[i].count == mset[i].max) { in addentry()
1308 realloc(mset[i].me, sizeof(*mp) * incr))) == in addentry()
1315 mset[i].me = mp; in addentry()
1319 mset[i].me[mset[i].count++] = *me; in addentry()
1320 memset(me, 0, sizeof(*me)); in addentry()
1334 struct magic_entry me; in load_1() local
1345 memset(&me, 0, sizeof(me)); in load_1()
[all …]
/freebsd-14-stable/contrib/ntp/ntpsnmpd/
HDntpsnmpd-opts.def92 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-14-stable/sys/contrib/openzfs/module/os/freebsd/spl/
HDcallb.c210 callb_t *me = (callb_t *)id; in callb_delete() local
215 pp = &ct->ct_first_cb[me->c_class]; in callb_delete()
216 while (*pp != NULL && *pp != me) in callb_delete()
220 if (*pp != me) { in callb_delete()
222 (void *)me); in callb_delete()
232 if (!(me->c_flag & CALLB_EXECUTING)) in callb_delete()
235 cv_wait(&me->c_done_cv, &ct->ct_lock); in callb_delete()
238 *pp = me->c_next; in callb_delete()
241 me->c_flag = CALLB_FREE; in callb_delete()
242 me->c_next = ct->ct_freelist; in callb_delete()
[all …]
/freebsd-14-stable/share/doc/usd/19.memacros/
HDMakefile4 SRCS= meintro.me-sed
5 MACROS= -me
12 meintro.me-sed: meintro.me
/freebsd-14-stable/share/doc/usd/20.meref/
HDMakefile4 SRCS= meref.me-sed
5 MACROS= -me
12 meref.me-sed: meref.me
/freebsd-14-stable/contrib/libexecinfo/
HDsymtab.c188 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-14-stable/contrib/tcsh/nls/french/
HDset211 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-14-stable/sys/contrib/openzfs/module/icp/core/
HDkcf_prov_tabs.c283 kcf_mech_entry_t *me; in kcf_get_sw_prov() local
286 if (kcf_get_mech_entry(mech_type, &me) != KCF_SUCCESS) in kcf_get_sw_prov()
290 if (me->me_sw_prov == NULL || in kcf_get_sw_prov()
291 (*pd = me->me_sw_prov->pm_prov_desc) == NULL) { in kcf_get_sw_prov()
295 me->me_name); in kcf_get_sw_prov()
302 *mep = me; in kcf_get_sw_prov()
/freebsd-14-stable/tools/regression/p1003_1b/
HDsched.c241 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-14-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
HDd_compound_literals1.c9 struct p me = (struct p) {1, 2, 3, 4}; in foo() local
10 me.a = me.b; in foo()
/freebsd-14-stable/usr.sbin/cron/doc/
HDTHANKS5 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.
HDCHANGES12 system; these were offerred to me before I started consulting for them, so
23 I also added a "-e" option to crontab(1). Nine people also sent me diffs
36 About a dozen people have reminded me that I forgot to initialize
40 Steve Simmons reminded me that once an account has been deleted from the
49 Dan O'Neil reminded me that I forgot to reset "log_fd" in misc.c. A lot of
50 others also reminded me of this, but Dan gets the point. I didn't fix it
53 Peter Kabal reminded me that I forgot to "#ifdef DEBUGGING" some code in
54 misc.c. Hans Trompert actually told me first, but Peter sent the patch so
57 Russell Nelson told me that I'd forgotten to "#include <syslog.h>" in misc.c,
59 syslog even when they configured it that way :-). Steve Simmons told me
[all …]
/freebsd-14-stable/contrib/ntp/sntp/libevent/build-aux/
HDar-lib4 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"
/freebsd-14-stable/contrib/libevent/
HDevthread.c241 unsigned long me; in evthread_debug_lock_mark_locked() local
242 me = evthread_id_fn_(); in evthread_debug_lock_mark_locked()
244 EVUTIL_ASSERT(lock->held_by == me); in evthread_debug_lock_mark_locked()
245 lock->held_by = me; in evthread_debug_lock_mark_locked()
275 unsigned long me; in evthread_debug_lock_mark_unlocked() local
276 me = evthread_id_fn_(); in evthread_debug_lock_mark_unlocked()
277 EVUTIL_ASSERT(lock->held_by == me); in evthread_debug_lock_mark_unlocked()
351 unsigned long me = evthread_id_fn_(); in evthread_is_debug_lock_held_() local
352 if (lock->held_by != me) in evthread_is_debug_lock_held_()
/freebsd-14-stable/contrib/ntp/sntp/libevent/
HDevthread.c241 unsigned long me; in evthread_debug_lock_mark_locked() local
242 me = evthread_id_fn_(); in evthread_debug_lock_mark_locked()
244 EVUTIL_ASSERT(lock->held_by == me); in evthread_debug_lock_mark_locked()
245 lock->held_by = me; in evthread_debug_lock_mark_locked()
275 unsigned long me; in evthread_debug_lock_mark_unlocked() local
276 me = evthread_id_fn_(); in evthread_debug_lock_mark_unlocked()
277 EVUTIL_ASSERT(lock->held_by == me); in evthread_debug_lock_mark_unlocked()
351 unsigned long me = evthread_id_fn_(); in evthread_is_debug_lock_held_() local
352 if (lock->held_by != me) in evthread_is_debug_lock_held_()

12345678910>>...18