Home
last modified time | relevance | path

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

12345678910>>...19

/freebsd-11-stable/contrib/apr-util/misc/
HDapr_thread_pool.c82 static apr_status_t thread_pool_construct(apr_thread_pool_t * me, in thread_pool_construct() argument
89 me->thd_max = max_threads; in thread_pool_construct()
90 me->idle_max = init_threads; in thread_pool_construct()
91 me->threshold = init_threads / 2; in thread_pool_construct()
92 rv = apr_thread_mutex_create(&me->lock, APR_THREAD_MUTEX_NESTED, in thread_pool_construct()
93 me->pool); in thread_pool_construct()
97 rv = apr_thread_cond_create(&me->cond, me->pool); in thread_pool_construct()
99 apr_thread_mutex_destroy(me->lock); in thread_pool_construct()
102 me->tasks = apr_palloc(me->pool, sizeof(*me->tasks)); in thread_pool_construct()
103 if (!me->tasks) { in thread_pool_construct()
[all …]
/freebsd-11-stable/contrib/atf/atf-c/detail/
HDmap.c50 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-11-stable/contrib/amd/amd/
HDrestart.c48 restart_fake_mntfs(mntent_t *me, am_ops *fs_ops) in restart_fake_mntfs() argument
60 cp = strchr(me->mnt_fsname, ':'); in restart_fake_mntfs()
63 mo.opt_rhost = xstrdup(me->mnt_fsname); in restart_fake_mntfs()
66 } else if (STREQ(me->mnt_type, MNTTAB_TYPE_NFS)) { in restart_fake_mntfs()
70 plog(XLOG_WARNING, "NFS server entry assumed to be %s:/", me->mnt_fsname); in restart_fake_mntfs()
71 mo.opt_rhost = xstrdup(me->mnt_fsname); in restart_fake_mntfs()
73 me->mnt_fsname = str3cat(me->mnt_fsname, mo.opt_rhost, ":", "/"); in restart_fake_mntfs()
75 mo.opt_fs = me->mnt_dir; in restart_fake_mntfs()
76 mo.opt_opts = me->mnt_opts; in restart_fake_mntfs()
81 mf = find_mntfs(fs_ops, &mo, me->mnt_dir, in restart_fake_mntfs()
[all …]
/freebsd-11-stable/contrib/apr-util/include/
HDapr_thread_pool.h77 APU_DECLARE(apr_status_t) apr_thread_pool_create(apr_thread_pool_t **me,
86 APU_DECLARE(apr_status_t) apr_thread_pool_destroy(apr_thread_pool_t *me);
97 APU_DECLARE(apr_status_t) apr_thread_pool_push(apr_thread_pool_t *me,
111 APU_DECLARE(apr_status_t) apr_thread_pool_schedule(apr_thread_pool_t *me,
126 APU_DECLARE(apr_status_t) apr_thread_pool_top(apr_thread_pool_t *me,
141 APU_DECLARE(apr_status_t) apr_thread_pool_tasks_cancel(apr_thread_pool_t *me,
149 APU_DECLARE(apr_size_t) apr_thread_pool_tasks_count(apr_thread_pool_t *me);
156 APU_DECLARE(apr_size_t) apr_thread_pool_scheduled_tasks_count(apr_thread_pool_t *me);
163 APU_DECLARE(apr_size_t) apr_thread_pool_threads_count(apr_thread_pool_t *me);
170 APU_DECLARE(apr_size_t) apr_thread_pool_busy_count(apr_thread_pool_t *me);
[all …]
/freebsd-11-stable/share/me/
HDMakefile4 MELIB= ${BINDIR}/me
6 MESRCS= acm.me chars.me deltext.me eqn.me float.me footnote.me \
7 index.me letterhead.me local.me null.me refer.me sh.me \
8 tbl.me thesis.me
/freebsd-11-stable/crypto/openssh/regress/
HDallow-deny-users.sh6 me="$LOGNAME"
7 if [ "x$me" = "x" ]; then
8 me=`whoami`
21 ${SSH} -F $OBJ/ssh_config "$me@somehost" true
34 test_auth "$other $me" "" false "user in DenyUsers allowed"
35 test_auth "$me $other" "" false "user in DenyUsers allowed"
37 test_auth "" "$other $me" true "user in AllowUsers denied"
38 test_auth "" "$me $other" true "user in AllowUsers denied"
39 test_auth "$me $other" "$me $other" false "user in both DenyUsers and AllowUsers allowe…
40 test_auth "$other $me" "$other $me" false "user in both DenyUsers and AllowUsers allowe…
/freebsd-11-stable/sys/geom/sched/
HDgs_rr.c189 static struct g_rr_params me = { variable
190 .sc_head = LIST_HEAD_INITIALIZER(&me.sc_head),
198 struct g_rr_params *gs_rr_me = &me;
204 &me.units, 0, "Scheduler instances");
206 &me.queues, 0, "Total rr queues");
208 &me.wait_ms.x_cur, 0, "Wait time milliseconds");
210 &me.quantum_ms.x_cur, 0, "Quantum size milliseconds");
212 &me.bypass, 0, "Bypass scheduler");
214 &me.w_anticipate, 0, "Do anticipation on writes");
216 &me.quantum_kb.x_cur, 0, "Quantum size Kbytes");
[all …]
HDg_sched.c185 static struct geom_sched_vars me = { variable
194 &me.gs_write_bytes_in_flight, 0, "Write bytes in flight");
197 &me.gs_bytes_in_flight, 0, "Bytes in flight");
200 &me.gs_writes_in_flight, 0, "Write Requests in flight");
203 &me.gs_in_flight, 0, "Requests in flight");
206 &me.gs_done, 0, "Total done");
209 &me.gs_requests, 0, "Total requests");
212 &me.gs_names, 0, "Algorithm names");
215 &me.gs_sched_count, 0, "Number of algorithms");
218 &me.gs_debug, 0, "Debug level");
[all …]
HDgs_delay.c84 static struct g_delay_params me = { variable
90 struct g_delay_params *gs_delay_me = &me;
96 &me.bypass, 0, "Scheduler bypass");
98 &me.units, 0, "Scheduler instances");
100 &me.latency, 0, "Minimum latency for requests, in microseconds (1/hz resolution)");
102 &me.io, 0, "I/Os delayed\n");
142 me.io++; in g_delay_next()
167 if (me.bypass) in g_delay_start()
172 bintime_addx(&bp->bio_t0, BTFRAC_1US * me.latency); in g_delay_start()
209 me.units++; in g_delay_init()
[all …]
/freebsd-11-stable/contrib/libarchive/libarchive/
HDarchive_write_set_format_mtree.c567 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_writer *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-11-stable/share/doc/psd/18.gprof/
HDMakefile5 SRCS= header.me abstract.me intro.me profiling.me gathering.me \
6 postp.me present.me refs.me
8 MACROS= -me
/freebsd-11-stable/sys/dev/ubsec/
HDubsec.c1703 struct ubsec_q2_modexp *me = (struct ubsec_q2_modexp *)q; in ubsec_callback2() local
1706 krp = me->me_krp; in ubsec_callback2()
1707 rlen = (me->me_modbits + 7) / 8; in ubsec_callback2()
1710 ubsec_dma_sync(&me->me_M, BUS_DMASYNC_POSTWRITE); in ubsec_callback2()
1711 ubsec_dma_sync(&me->me_E, BUS_DMASYNC_POSTWRITE); in ubsec_callback2()
1712 ubsec_dma_sync(&me->me_C, BUS_DMASYNC_POSTREAD); in ubsec_callback2()
1713 ubsec_dma_sync(&me->me_epb, BUS_DMASYNC_POSTWRITE); in ubsec_callback2()
1722 bcopy(me->me_C.dma_vaddr, in ubsec_callback2()
1724 (me->me_modbits + 7) / 8); in ubsec_callback2()
1726 ubsec_kshift_l(me->me_shiftbits, in ubsec_callback2()
[all …]
/freebsd-11-stable/etc/
HDrc.firewall220 ${fwcmd} add pass all from me to ${net}
221 ${fwcmd} add pass all from ${net} to me
223 ${fwcmd} add pass all from me to ${net6}
224 ${fwcmd} add pass all from ${net6} to me
232 ${fwcmd} add pass udp from fe80::/10 to me 546
242 ${fwcmd} add pass tcp from any to me 25 setup
245 ${fwcmd} add pass tcp from me to any setup
251 ${fwcmd} add pass udp from me to any 53 keep-state
254 ${fwcmd} add pass udp from me to any 123 keep-state
392 ${fwcmd} add pass tcp from any to me 25 setup
[all …]
/freebsd-11-stable/contrib/file/src/
HDapprentice.c91 struct magic_entry *me; member
1152 addentry(struct magic_set *ms, struct magic_entry *me, in addentry() argument
1155 size_t i = me->mp->type == FILE_NAME ? 1 : 0; in addentry()
1161 realloc(mset[i].me, sizeof(*mp) * mset[i].max))) == in addentry()
1168 mset[i].me = mp; in addentry()
1170 mset[i].me[mset[i].count++] = *me; in addentry()
1171 memset(me, 0, sizeof(*me)); in addentry()
1185 struct magic_entry me; in load_1() local
1196 memset(&me, 0, sizeof(me)); in load_1()
1226 if (me.mp == NULL) { in load_1()
[all …]
/freebsd-11-stable/contrib/gcclibs/libgomp/config/posix95/
HDlock.c84 pthread_t me = pthread_self (); in omp_set_nest_lock() local
86 if (lock->owner != me) in omp_set_nest_lock()
89 lock->owner = me; in omp_set_nest_lock()
110 pthread_t me = pthread_self (); in omp_test_nest_lock() local
112 if (lock->owner != me) in omp_test_nest_lock()
116 lock->owner = me; in omp_test_nest_lock()
/freebsd-11-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-11-stable/contrib/gcc/config/i386/
HDgthr-win32.c198 DWORD me = GetCurrentThreadId(); in __gthr_win32_recursive_mutex_lock() local
202 mutex->owner = me; in __gthr_win32_recursive_mutex_lock()
204 else if (mutex->owner == me) in __gthr_win32_recursive_mutex_lock()
212 mutex->owner = me; in __gthr_win32_recursive_mutex_lock()
227 DWORD me = GetCurrentThreadId(); in __gthr_win32_recursive_mutex_trylock() local
231 mutex->owner = me; in __gthr_win32_recursive_mutex_trylock()
233 else if (mutex->owner == me) in __gthr_win32_recursive_mutex_trylock()
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/os/
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-11-stable/share/doc/usd/20.meref/
HDMakefile5 SRCS= meref.me-sed
6 MACROS= -me
13 meref.me-sed: meref.me
/freebsd-11-stable/share/doc/usd/19.memacros/
HDMakefile5 SRCS= meintro.me-sed
6 MACROS= -me
13 meintro.me-sed: meintro.me
/freebsd-11-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-11-stable/tools/regression/p1003_1b/
HDsched.c240 pid_t me; in sched() local
244 if ((me = fork()) != 0) in sched()
267 *lastrun = me; in sched()
270 if (*lastrun == me) in sched()
275 if (!me || rt_param.sched_priority != 0) in sched()
279 (long)me, rt_param.sched_priority + 1); in sched()
/freebsd-11-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.
HDCHANGES13 system; these were offerred to me before I started consulting for them, so
24 I also added a "-e" option to crontab(1). Nine people also sent me diffs
37 About a dozen people have reminded me that I forgot to initialize
41 Steve Simmons reminded me that once an account has been deleted from the
50 Dan O'Neil reminded me that I forgot to reset "log_fd" in misc.c. A lot of
51 others also reminded me of this, but Dan gets the point. I didn't fix it
54 Peter Kabal reminded me that I forgot to "#ifdef DEBUGGING" some code in
55 misc.c. Hans Trompert actually told me first, but Peter sent the patch so
58 Russell Nelson told me that I'd forgotten to "#include <syslog.h>" in misc.c,
60 syslog even when they configured it that way :-). Steve Simmons told me
[all …]
/freebsd-11-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"

12345678910>>...19