Home
last modified time | relevance | path

Searched refs:msg_ptr (Results 1 – 5 of 5) sorted by relevance

/external/tcpdump/
Dprint-cfm.c298 } msg_ptr; in cfm_print() local
333 msg_ptr.cfm_ccm = (const struct cfm_ccm_t *)tptr; in cfm_print()
353 EXTRACT_32BITS(msg_ptr.cfm_ccm->sequence), in cfm_print()
354 EXTRACT_16BITS(msg_ptr.cfm_ccm->ma_epi))); in cfm_print()
362 msg_ptr.cfm_ccm->md_nameformat), in cfm_print()
363 msg_ptr.cfm_ccm->md_nameformat, in cfm_print()
364 msg_ptr.cfm_ccm->md_namelength)); in cfm_print()
366 if (msg_ptr.cfm_ccm->md_nameformat != CFM_CCM_MD_FORMAT_NONE) { in cfm_print()
368 switch (msg_ptr.cfm_ccm->md_nameformat) { in cfm_print()
371 safeputs(ndo, msg_ptr.cfm_ccm->md_name, msg_ptr.cfm_ccm->md_namelength); in cfm_print()
[all …]
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h1368 #define __sanitizer_syscall_pre_mq_timedsend(mqdes, msg_ptr, msg_len, \ argument
1370 __sanitizer_syscall_pre_impl_mq_timedsend((long)(mqdes), (long)(msg_ptr), \
1373 #define __sanitizer_syscall_post_mq_timedsend(res, mqdes, msg_ptr, msg_len, \ argument
1376 res, (long)(mqdes), (long)(msg_ptr), (long)(msg_len), (long)(msg_prio), \
1378 #define __sanitizer_syscall_pre_mq_timedreceive(mqdes, msg_ptr, msg_len, \ argument
1381 (long)(mqdes), (long)(msg_ptr), (long)(msg_len), (long)(msg_prio), \
1383 #define __sanitizer_syscall_post_mq_timedreceive(res, mqdes, msg_ptr, msg_len, \ argument
1386 res, (long)(mqdes), (long)(msg_ptr), (long)(msg_len), (long)(msg_prio), \
2772 void __sanitizer_syscall_pre_impl_mq_timedsend(long mqdes, long msg_ptr,
2776 long msg_ptr, long msg_len,
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc2180 PRE_SYSCALL(mq_timedsend)(long mqdes, const void *msg_ptr, long msg_len,
2182 if (msg_ptr) PRE_READ(msg_ptr, msg_len);
2186 POST_SYSCALL(mq_timedsend)(long res, long mqdes, const void *msg_ptr,
2190 PRE_SYSCALL(mq_timedreceive)(long mqdes, void *msg_ptr, long msg_len,
2195 POST_SYSCALL(mq_timedreceive)(long res, long mqdes, void *msg_ptr, long msg_len,
2198 if (msg_ptr) POST_WRITE(msg_ptr, res);
/external/valgrind/memcheck/tests/x86-linux/
Dscalar.stderr.exp3881 Syscall param mq_timedsend(msg_ptr) contains uninitialised byte(s)
3897 Syscall param mq_timedsend(msg_ptr) points to unaddressable byte(s)
3914 Syscall param mq_timedreceive(msg_ptr) contains uninitialised byte(s)
3930 Syscall param mq_timedreceive(msg_ptr) points to unaddressable byte(s)
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-linux.c2075 vki_mqd_t, mqdes, const char *, msg_ptr, vki_size_t, msg_len, in PRE()
2093 vki_mqd_t, mqdes, char *, msg_ptr, vki_size_t, msg_len, in PRE()