Home
last modified time | relevance | path

Searched defs:m (Results 1 – 25 of 1961) sorted by relevance

12345678910>>...79

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/consistency.vlad/layout/
H A Dminimal-struct-size-align.c8 static struct {char m;} s2; member
9 static union {char m;} u2; member
10 static struct {short m;} s3; member
11 static union {short m;} u3; member
12 static struct {int m;} s4; member
13 static union {int m;} u4; member
14 static struct {long m;} s5; member
15 static union {long m;} u5; member
16 static struct {long long m;} s6; member
17 static union {long long m;} u6; member
[all …]
H A Dbiggest-field-align.c4 static struct {char m;} s0; member
5 static struct {short m;} s1; member
6 static struct {int m;} s2; member
7 static struct {long m;} s3; member
8 static struct {long long m;} s4; member
9 static struct {char * m;} s5; member
10 static struct {float m;} s6; member
11 static struct {double m;} s7; member
12 static struct {long double m;} s8; member
13 static struct {ptrdiff_t m;} s9; member
[all …]
/openbsd-src/gnu/usr.sbin/mkhybrid/src/include/
H A Dstatdefs.h48 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) argument
50 # define S_ISFIFO(m) (0) argument
55 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) argument
57 # define S_ISCHR(m) (0) argument
62 # define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC) argument
64 # define S_ISMPC(m) (0) argument
69 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) argument
71 # define S_ISDIR(m) (0) argument
76 # define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM) argument
78 # define S_ISNAM(m) (0) argument
[all …]
/openbsd-src/usr.sbin/smtpd/
H A Dmproc.c373 m_msg(struct msg * m,struct imsg * imsg) m_msg() argument
381 m_end(struct msg * m) m_end() argument
388 m_is_eom(struct msg * m) m_is_eom() argument
394 m_get(struct msg * m,void * dst,size_t sz) m_get() argument
405 m_add_int(struct mproc * m,int v) m_add_int() argument
411 m_add_u32(struct mproc * m,uint32_t u32) m_add_u32() argument
417 m_add_size(struct mproc * m,size_t sz) m_add_size() argument
423 m_add_time(struct mproc * m,time_t v) m_add_time() argument
429 m_add_timeval(struct mproc * m,struct timeval * tv) m_add_timeval() argument
436 m_add_string(struct mproc * m,const char * v) m_add_string() argument
447 m_add_data(struct mproc * m,const void * v,size_t len) m_add_data() argument
454 m_add_id(struct mproc * m,uint64_t v) m_add_id() argument
460 m_add_evpid(struct mproc * m,uint64_t v) m_add_evpid() argument
466 m_add_msgid(struct mproc * m,uint32_t v) m_add_msgid() argument
472 m_add_sockaddr(struct mproc * m,const struct sockaddr * sa) m_add_sockaddr() argument
479 m_add_mailaddr(struct mproc * m,const struct mailaddr * maddr) m_add_mailaddr() argument
485 m_add_envelope(struct mproc * m,const struct envelope * evp) m_add_envelope() argument
495 m_add_params(struct mproc * m,struct dict * d) m_add_params() argument
514 m_get_int(struct msg * m,int * i) m_get_int() argument
520 m_get_u32(struct msg * m,uint32_t * u32) m_get_u32() argument
526 m_get_size(struct msg * m,size_t * sz) m_get_size() argument
532 m_get_time(struct msg * m,time_t * t) m_get_time() argument
538 m_get_timeval(struct msg * m,struct timeval * tv) m_get_timeval() argument
544 m_get_string(struct msg * m,const char ** s) m_get_string() argument
569 m_get_data(struct msg * m,const void ** data,size_t * sz) m_get_data() argument
586 m_get_evpid(struct msg * m,uint64_t * evpid) m_get_evpid() argument
592 m_get_msgid(struct msg * m,uint32_t * msgid) m_get_msgid() argument
598 m_get_id(struct msg * m,uint64_t * id) m_get_id() argument
604 m_get_sockaddr(struct msg * m,struct sockaddr * sa) m_get_sockaddr() argument
613 m_get_mailaddr(struct msg * m,struct mailaddr * maddr) m_get_mailaddr() argument
619 m_get_envelope(struct msg * m,struct envelope * evp) m_get_envelope() argument
635 m_get_params(struct msg * m,struct dict * d) m_get_params() argument
[all...]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dgdb_stat.h41 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) argument
44 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) argument
47 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) argument
50 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) argument
53 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) argument
56 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) argument
59 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) argument
62 #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB) argument
63 #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC) argument
66 #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK) argument
H A Dmemattr.c85 delete_mem_region (struct mem_region *m) in delete_mem_region()
97 struct mem_region *m; in lookup_mem_region() local
216 struct mem_region *m; in mem_info_command() local
341 struct mem_region *m; in mem_enable() local
358 struct mem_region *m; in mem_enable_command() local
391 struct mem_region *m; in mem_disable() local
408 struct mem_region *m; in mem_disable_command() local
440 struct mem_region *m; in mem_clear() local
454 struct mem_region *m1, *m; in mem_delete() local
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.abi/
H A Dvmihint.C10 struct A {int m;}; member
11 struct A1vA : virtual A {int m;}; member
12 struct A2vA : virtual A {int m;}; member
13 struct A1A : A {int m;}; member
14 struct A2A : A {int m;}; member
15 struct B {int m;}; member
17 struct C1 : B, virtual A {int m;}; member
19 struct D1 : A1vA, A2vA {int m;}; member
21 struct E1 : A1A, A2A {int m;}; member
23 struct E2 : A1A, A2vA {int m;}; member
[all …]
/openbsd-src/sys/kern/
H A Duipc_mbuf.c148 (m)->m_flags & M_PKTHDR ? (m)->m_pktdat : (m)->m_dat) argument
146 M_DATABUF(m) global() argument
236 struct mbuf *m; m_get() local
269 struct mbuf *m; m_gethdr() local
292 m_inithdr(struct mbuf * m) m_inithdr() argument
306 m_clearhdr(struct mbuf * m) m_clearhdr() argument
319 m_removehdr(struct mbuf * m) m_removehdr() argument
327 m_resethdr(struct mbuf * m) m_resethdr() argument
342 m_calchdrlen(struct mbuf * m) m_calchdrlen() argument
356 struct mbuf *m; m_getclr() local
381 m_clget(struct mbuf * m,int how,u_int pktlen) m_clget() argument
417 m_free(struct mbuf * m) m_free() argument
475 m_extunref(struct mbuf * m) m_extunref() argument
509 m_extfree(struct mbuf * m) m_extfree() argument
521 m_freem(struct mbuf * m) m_freem() argument
538 m_purge(struct mbuf * m) m_purge() argument
551 m_defrag(struct mbuf * m,int how) m_defrag() argument
608 m_prepend(struct mbuf * m,int len,int how) m_prepend() argument
644 struct mbuf *m, *n, **np; m_copym() local
709 m_copydata(struct mbuf * m,int off,int len,void * p) m_copydata() argument
742 struct mbuf *m = m0, *n; m_copyback() local
819 m_cat(struct mbuf * m,struct mbuf * n) m_cat() argument
841 struct mbuf *m; m_adj() local
921 struct mbuf *m; m_pullup() local
1024 m_getptr(struct mbuf * m,int loc,int * off) m_getptr() argument
1059 struct mbuf *m, *n; m_split() local
1132 struct mbuf *m; m_makespace() local
1224 struct mbuf *m; m_devget() local
1287 m_zero(struct mbuf * m) m_zero() argument
1307 m_apply(struct mbuf * m,int off,int len,int (* f)(caddr_t,caddr_t,unsigned int),caddr_t fstate) m_apply() argument
1347 m_leadingspace(struct mbuf * m) m_leadingspace() argument
1360 m_trailingspace(struct mbuf * m) m_trailingspace() argument
1373 m_align(struct mbuf * m,int len) m_align() argument
1418 struct mbuf *m; m_dup_pkt() local
1452 m_microtime(const struct mbuf * m,struct timeval * tv) m_microtime() argument
1507 struct mbuf *m = v; m_print() local
1559 ml_enqueue(struct mbuf_list * ml,struct mbuf * m) ml_enqueue() argument
1590 struct mbuf *m; ml_dequeue() local
1620 struct mbuf *m, *n; ml_purge() local
1637 struct mbuf *m; ml_hdatalen() local
1660 mq_push(struct mbuf_queue * mq,struct mbuf * m) mq_push() argument
1679 mq_enqueue(struct mbuf_queue * mq,struct mbuf * m) mq_enqueue() argument
1701 struct mbuf *m; mq_dequeue() local
1713 struct mbuf *m; mq_enlist() local
[all...]
H A Duipc_mbuf2.c87 m_pulldown(struct mbuf * m,int off,int len,int * offp) m_pulldown() argument
217 m_dup1(struct mbuf * m,int off,int len,int wait) m_dup1() argument
273 m_tag_prepend(struct mbuf * m,struct m_tag * t) m_tag_prepend() argument
281 m_tag_delete(struct mbuf * m,struct m_tag * t) m_tag_delete() argument
297 m_tag_delete_chain(struct mbuf * m) m_tag_delete_chain() argument
310 m_tag_find(struct mbuf * m,int type,struct m_tag * t) m_tag_find() argument
372 m_tag_init(struct mbuf * m) m_tag_init() argument
379 m_tag_first(struct mbuf * m) m_tag_first() argument
386 m_tag_next(struct mbuf * m,struct m_tag * t) m_tag_next() argument
[all...]
/openbsd-src/gnu/usr.bin/cvs/lib/
H A Dsystem.h41 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) argument
43 # define S_ISBLK(m) ((m) & S_IFBLK) argument
49 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) argument
51 # define S_ISCHR(m) ((m) & S_IFCHR) argument
57 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) argument
59 # define S_ISDIR(m) ((m) & S_IFDIR) argument
65 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) argument
67 # define S_ISREG(m) ((m) & S_IFREG) argument
73 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) argument
75 # define S_ISFIFO(m) ((m) & S_IFIFO) argument
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp43 INTERCEPTOR(int, pthread_mutex_destroy, pthread_mutex_t *m) { in INTERCEPTOR()
49 INTERCEPTOR(int, pthread_mutex_lock, pthread_mutex_t *m) { in INTERCEPTOR()
57 INTERCEPTOR(int, pthread_mutex_trylock, pthread_mutex_t *m) { in INTERCEPTOR()
65 INTERCEPTOR(int, pthread_mutex_unlock, pthread_mutex_t *m) { in INTERCEPTOR()
71 INTERCEPTOR(int, pthread_spin_destroy, pthread_spinlock_t *m) { in INTERCEPTOR()
78 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *m) { in INTERCEPTOR()
86 INTERCEPTOR(int, pthread_spin_trylock, pthread_spinlock_t *m) { in INTERCEPTOR()
94 INTERCEPTOR(int, pthread_spin_unlock, pthread_spinlock_t *m) { in INTERCEPTOR()
100 INTERCEPTOR(int, pthread_rwlock_destroy, pthread_rwlock_t *m) { in INTERCEPTOR()
106 INTERCEPTOR(int, pthread_rwlock_rdlock, pthread_rwlock_t *m) { in INTERCEPTOR()
[all …]
/openbsd-src/lib/libcrypto/bn/
H A Dbn_mod.c119 BN_mod_ct(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_ct()
125 BN_mod_nonct(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_nonct()
137 BN_nnmod(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_nnmod()
152 BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_add()
170 BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m) in BN_mod_add_quick()
185 BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_sub()
203 BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m) in BN_mod_sub_quick()
218 BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_mul()
257 BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_sqr()
264 BN_mod_lshift1(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_lshift1()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/torture/
H A Dcris-volatile-1.c15 unsigned long m; in a1() local
24 unsigned long m; in a2() local
33 unsigned long m; in a3() local
41 unsigned long m; in ac1() local
50 unsigned long m; in ac2() local
59 unsigned long m; in ac3() local
68 unsigned long m; in oc3() local
/openbsd-src/sys/dev/pci/drm/i915/display/
H A Dintel_display_debugfs.c42 static int i915_frontbuffer_tracking(struct seq_file *m, void *unused) in i915_frontbuffer_tracking()
55 static int i915_sr_status(struct seq_file *m, void *unused) in i915_sr_status()
84 static int i915_opregion(struct seq_file *m, void *unused) in i915_opregion()
95 static int i915_vbt(struct seq_file *m, void *unused) in i915_vbt()
106 static int i915_gem_framebuffer_info(struct seq_file *m, void *data) in i915_gem_framebuffer_info()
148 static int i915_power_domain_info(struct seq_file *m, void *unused) in i915_power_domain_info()
157 static void intel_seq_print_mode(struct seq_file *m, int tabs, in intel_seq_print_mode()
168 static void intel_encoder_info(struct seq_file *m, in intel_encoder_info()
193 static void intel_panel_info(struct seq_file *m, in intel_panel_info()
207 static void intel_hdcp_info(struct seq_file *m, in intel_hdcp_info()
[all …]
/openbsd-src/sys/dev/pci/drm/amd/amdkfd/
H A Dkfd_mqd_manager_v10.c48 struct v10_compute_mqd *m; in update_cu_mask() local
70 static void set_priority(struct v10_compute_mqd *m, struct queue_properties *q) in set_priority()
93 struct v10_compute_mqd *m; in init_mqd() local
166 struct v10_compute_mqd *m; in update_mqd() local
229 struct v10_compute_mqd *m = (struct v10_compute_mqd *)mqd; in read_doorbell_id() local
240 struct v10_compute_mqd *m; in get_wave_state() local
274 struct v10_compute_mqd *m; in checkpoint_mqd() local
288 struct v10_compute_mqd *m; in restore_mqd() local
312 struct v10_compute_mqd *m; in init_mqd_hiq() local
327 struct v10_compute_mqd *m; in destroy_hiq_mqd() local
[all …]
H A Dkfd_mqd_manager_cik.c48 struct cik_mqd *m; in update_cu_mask() local
70 static void set_priority(struct cik_mqd *m, struct queue_properties *q) in set_priority()
93 struct cik_mqd *m; in init_mqd() local
146 struct cik_sdma_rlc_registers *m; in init_mqd_sdma() local
176 struct cik_mqd *m; in __update_mqd() local
211 struct cik_mqd *m = (struct cik_mqd *)mqd; in read_doorbell_id() local
227 struct cik_sdma_rlc_registers *m; in update_mqd_sdma() local
253 struct cik_mqd *m; in checkpoint_mqd() local
267 struct cik_mqd *m; in restore_mqd() local
291 struct cik_sdma_rlc_registers *m; in checkpoint_mqd_sdma() local
[all …]
H A Dkfd_mqd_manager_v11.c47 struct v11_compute_mqd *m; in update_cu_mask() local
96 static void set_priority(struct v11_compute_mqd *m, struct queue_properties *q) in set_priority()
128 struct v11_compute_mqd *m; in init_mqd() local
220 struct v11_compute_mqd *m; in update_mqd() local
283 struct v11_compute_mqd *m = (struct v11_compute_mqd *)mqd; in read_doorbell_id() local
294 struct v11_compute_mqd *m; in get_wave_state() local
327 struct v11_compute_mqd *m; in checkpoint_mqd() local
341 struct v11_compute_mqd *m; in restore_mqd() local
366 struct v11_compute_mqd *m; in init_mqd_hiq() local
381 struct v11_compute_mqd *m; in destroy_hiq_mqd() local
[all …]
H A Dkfd_mqd_manager_vi.c51 struct vi_mqd *m; in update_cu_mask() local
73 static void set_priority(struct vi_mqd *m, struct queue_properties *q) in set_priority()
96 struct vi_mqd *m; in init_mqd() local
174 struct vi_mqd *m; in __update_mqd() local
242 struct vi_mqd *m = (struct vi_mqd *)mqd; in read_doorbell_id() local
260 struct vi_mqd *m; in get_wave_state() local
285 struct vi_mqd *m; in checkpoint_mqd() local
299 struct vi_mqd *m; in restore_mqd() local
323 struct vi_mqd *m; in init_mqd_hiq() local
344 struct vi_sdma_mqd *m; in init_mqd_sdma() local
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dambig2.C7 struct A {int m;}; member
8 struct B : A { int m; }; member
9 struct C : A { int m; }; member
10 struct D0 : virtual B, virtual C { int m; }; member
11 struct D1 : virtual B, C { int m; }; member
12 struct D2 : B, virtual C { int m; }; member
13 struct D3 : B, C { int m; }; member
/openbsd-src/gnu/usr.bin/perl/win32/
H A Dwin32thread.h17 #define MUTEX_INIT(m) InitializeCriticalSection(m) argument
18 #define MUTEX_LOCK(m) EnterCriticalSection(m) argument
19 #define MUTEX_UNLOCK(m) LeaveCriticalSection(m) argument
20 #define MUTEX_DESTROY(m) DeleteCriticalSection(m) argument
25 # define MUTEX_INIT(m) \ argument
31 # define MUTEX_LOCK(m) \ argument
37 # define MUTEX_UNLOCK(m) \ argument
43 # define MUTEX_DESTROY(m) \ argument
77 #define COND_WAIT(c, m) \ argument
/openbsd-src/regress/lib/libc/qsort/
H A Dqsort_test.c126 int m, int n) in check_result()
173 #define FILL_SAWTOOTH(x, n, m) do { \ argument
181 fill_sawtooth_i(void *v, int n, int m) in fill_sawtooth_i()
188 fill_sawtooth_ll(void *v, int n, int m) in fill_sawtooth_ll()
195 fill_sawtooth_double(void *v, int n, int m) in fill_sawtooth_double()
201 #define FILL_RANDOM(x, n, m) do { \ argument
210 fill_random_i(void *v, int n, int m) in fill_random_i()
217 fill_random_ll(void *v, int n, int m) in fill_random_ll()
224 fill_random_double(void *v, int n, int m) in fill_random_double()
230 #define FILL_STAGGER(x, n, m) do { \ argument
[all …]
/openbsd-src/sys/arch/sparc64/include/
H A Dendian.h13 __mswap16(volatile const __uint16_t *m) in __mswap16()
25 __mswap32(volatile const __uint32_t *m) in __mswap32()
37 __mswap64(volatile const __uint64_t *m) in __mswap64()
49 __swapm16(volatile __uint16_t *m, __uint16_t v) in __swapm16()
57 __swapm32(volatile __uint32_t *m, __uint32_t v) in __swapm32()
65 __swapm64(volatile __uint64_t *m, __uint64_t v) in __swapm64()
/openbsd-src/usr.bin/netstat/
H A Dinet.c381 #define p(f, m) if (tcpstat.f || sflag <= 1) \ in tcp_stats() argument
383 #define p1(f, m) if (tcpstat.f || sflag <= 1) \ in tcp_stats() argument
385 #define p2(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \ in tcp_stats() argument
387 #define p2a(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \ in tcp_stats() argument
389 #define p2b(f1, f2, m) if (tcpstat.f1 || sflag <= 1) \ in tcp_stats() argument
391 p2bys(f1,f2,m) tcp_stats() argument
393 pes(f,m) tcp_stats() argument
395 pys(f,m) tcp_stats() argument
541 p(f,m) udp_stats() argument
543 p1(f,m) udp_stats() argument
587 p(f,m) ip_stats() argument
589 p1(f,m) ip_stats() argument
650 p(f,m) div_stats() argument
652 p1(f,m) div_stats() argument
726 p(f,m) icmp_stats() argument
787 p(f,m) igmp_stats() argument
789 py(f,m) igmp_stats() argument
968 p(f,m) ah_stats() argument
970 p1(f,m) ah_stats() argument
1015 p(f,m) etherip_stats() argument
1048 p(f,m) ipsec_stats() argument
1083 p(f,m) esp_stats() argument
1132 p(f,m) ipip_stats() argument
1166 p(f,m) carp_stats() argument
1168 p2(f,m) carp_stats() argument
1208 p(f,m) pfsync_stats() argument
1210 p2(f,m) pfsync_stats() argument
1251 p(f,m) pflow_stats() argument
1253 p2(f,m) pflow_stats() argument
1282 p(f,m) ipcomp_stats() argument
[all...]
/openbsd-src/gnu/usr.bin/perl/
H A Dthread.h100 #define MUTEX_INIT(m) \ argument
111 #define MUTEX_LOCK(m) mutex_lock(*m) argument
112 #define MUTEX_UNLOCK(m) mutex_unlock(*m) argument
113 #define MUTEX_DESTROY(m) \ argument
133 #define COND_WAIT(c, m) condition_wait(*c, *m) argument
176 # define MUTEX_INIT(m) \ argument
185 # define MUTEX_INIT(m) \ argument
195 # define perl_pthread_mutex_lock(m) perl_tsa_mutex_lock(m) argument
196 # define perl_pthread_mutex_unlock(m) perl_tsa_mutex_unlock(m) argument
198 # define perl_pthread_mutex_lock(m) pthread_mutex_lock(m) argument
[all …]
/openbsd-src/usr.bin/ssh/
H A Dmonitor_wrap.c152 mm_request_send(int sock,enum monitor_reqtype type,struct sshbuf * m) mm_request_send() argument
175 mm_request_receive(int sock,struct sshbuf * m) mm_request_receive() argument
207 mm_request_receive_expect(int sock,enum monitor_reqtype type,struct sshbuf * m) mm_request_receive_expect() argument
228 struct sshbuf *m; mm_choose_dh() local
264 struct sshbuf *m; mm_sshkey_sign() local
289 mm_decode_activate_server_options(struct ssh * ssh,struct sshbuf * m) mm_decode_activate_server_options() argument
343 struct sshbuf *m; mm_getpwnamallow() local
396 struct sshbuf *m; mm_auth2_read_banner() local
426 struct sshbuf *m; mm_inform_authserv() local
446 struct sshbuf *m; mm_auth_password() local
489 struct sshbuf *m; mm_key_allowed() local
540 struct sshbuf *m; mm_sshkey_verify() local
588 struct sshbuf *m; mm_send_keystate() local
603 struct sshbuf *m; mm_pty_allocate() local
655 struct sshbuf *m; mm_session_pty_cleanup2() local
681 struct sshbuf *m; mm_terminate() local
705 struct sshbuf *m; mm_bsdauth_query() local
742 struct sshbuf *m; mm_bsdauth_respond() local
769 struct sshbuf *m; mm_ssh_gssapi_server_ctx() local
795 struct sshbuf *m; mm_ssh_gssapi_accept_ctx() local
825 struct sshbuf *m; mm_ssh_gssapi_checkmic() local
848 struct sshbuf *m; mm_ssh_gssapi_userok() local
[all...]

12345678910>>...79