Lines Matching refs:uniqid

791 void test_oslog_default_helper(uint32_t uniqid, uint64_t count);
792 void test_oslog_info_helper(uint32_t uniqid, uint64_t count);
793 void test_oslog_debug_helper(uint32_t uniqid, uint64_t count);
794 void test_oslog_error_helper(uint32_t uniqid, uint64_t count);
795 void test_oslog_fault_helper(uint32_t uniqid, uint64_t count);
798 kern_return_t test_stresslog_dropmsg(uint32_t uniqid);
804 …void fname(uint32_t uniqid, uint64_t count) …
812 … datalen = scnprintf(databuffer, sizeof(databuffer), TESTOSLOGFMT(ident), uniqid, i + 1, count); \
814 … callout_f(OS_LOG_DEFAULT, TESTOSLOG(ident), checksum, uniqid, i + 1, count); \
830 uint32_t uniqid = RandomULong(); in test_os_log() local
853 T_LOG("Validating with uniqid %u u64 %llu", uniqid, a); in test_os_log()
854 T_ASSERT_NE_UINT(0, uniqid, "random number should not be zero"); in test_os_log()
857 …datalen = scnprintf(databuffer, sizeof(databuffer), TESTOSLOGFMT("printf_only"), uniqid, seqno, to… in test_os_log()
859 printf(TESTOSLOG("printf_only") "mat%llu\n", checksum, uniqid, seqno, total_seqno, a); in test_os_log()
862 …datalen = scnprintf(databuffer, sizeof(databuffer), TESTOSLOGFMT("printf_only"), uniqid, seqno, to… in test_os_log()
864 printf(TESTOSLOG("printf_only") "mat%llu\n", checksum, uniqid, seqno, total_seqno, a); in test_os_log()
887 …datalen = scnprintf(databuffer, sizeof(databuffer), TESTOSLOGFMT("oslog_info"), uniqid, seqno, tot… in test_os_log()
889 …os_log_info(log_handle, TESTOSLOG("oslog_info") "mat%llu", checksum, uniqid, seqno, total_seqno, a… in test_os_log()
897 test_oslog_info_helper(uniqid, 10); in test_os_log()
901 test_oslog_debug_helper(uniqid, 10); in test_os_log()
905 test_oslog_error_helper(uniqid, 10); in test_os_log()
909 test_oslog_default_helper(uniqid, 10); in test_os_log()
913 test_oslog_fault_helper(uniqid, 10); in test_os_log()
926 uint32_t uniqid = RandomULong(); in _test_log_loop() local
927 test_oslog_debug_helper(uniqid, 100); in _test_log_loop()
936 uint32_t uniqid = RandomULong(); in test_os_log_parallel() local
947 test_oslog_info_helper(uniqid, 100); in test_os_log_parallel()
996 uint32_t uniqid = in[3]; in test_oslog_handleOSLogCtl() local
998 if (uniqid == 0 || msgcount == 0) { in test_oslog_handleOSLogCtl()
1004 case OS_LOG_TYPE_INFO: test_oslog_info_helper(uniqid, msgcount); break; in test_oslog_handleOSLogCtl()
1005 case OS_LOG_TYPE_DEBUG: test_oslog_debug_helper(uniqid, msgcount); break; in test_oslog_handleOSLogCtl()
1006 case OS_LOG_TYPE_ERROR: test_oslog_error_helper(uniqid, msgcount); break; in test_oslog_handleOSLogCtl()
1007 case OS_LOG_TYPE_FAULT: test_oslog_fault_helper(uniqid, msgcount); break; in test_oslog_handleOSLogCtl()
1009 default: test_oslog_default_helper(uniqid, msgcount); break; in test_oslog_handleOSLogCtl()
1025 test_stresslog_dropmsg(uint32_t uniqid) in test_stresslog_dropmsg() argument
1031 uniqid = RandomULong(); in test_stresslog_dropmsg()
1032 test_oslog_debug_helper(uniqid, 100); in test_stresslog_dropmsg()
1034 test_oslog_debug_helper(uniqid, 100); in test_stresslog_dropmsg()