HomeSort by: relevance | last modified time | path
    Searched refs:__LINE__ (Results 1 - 25 of 1300) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/tradcpp/dist/tests/
t38.c 1 #define m() __FILE__:__LINE__
2 __LINE__
4 __LINE__
  /src/external/gpl3/gcc/dist/libbacktrace/
edtest2.c 42 return f3(x, __LINE__) + 3;
  /src/external/gpl3/gcc.old/dist/libbacktrace/
edtest2.c 42 return f3(x, __LINE__) + 3;
  /src/external/gpl3/gdb/dist/libbacktrace/
edtest2.c 42 return f3(x, __LINE__) + 3;
  /src/external/gpl3/gdb.old/dist/libbacktrace/
edtest2.c 42 return f3(x, __LINE__) + 3;
  /src/crypto/external/apache2/openssl/dist/test/
aborttest.c 14 OPENSSL_die("Voluntary abort", __FILE__, __LINE__);
  /src/crypto/external/bsd/openssl/dist/test/
aborttest.c 14 OPENSSL_die("Voluntary abort", __FILE__, __LINE__);
  /src/crypto/external/bsd/openssl.old/dist/test/
aborttest.c 14 OPENSSL_die("Voluntary abort", __FILE__, __LINE__);
testutil.h 114 # define TEST_CASE_NAME __FILE__ ":" testutil_stringify(__LINE__)
291 # define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b)
292 # define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b)
293 # define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b)
294 # define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b)
295 # define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b)
296 # define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b)
298 # define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b)
299 # define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b)
300 # define TEST_uint_lt(a, b) test_uint_lt(__FILE__, __LINE__, #a, #b, a, b
    [all...]
  /src/external/bsd/ntp/dist/sntp/unity/
unity.h 59 #define TEST_FAIL_MESSAGE(message) UNITY_TEST_FAIL(__LINE__, message)
60 #define TEST_FAIL() UNITY_TEST_FAIL(__LINE__, NULL)
61 #define TEST_IGNORE_MESSAGE(message) UNITY_TEST_IGNORE(__LINE__, message)
62 #define TEST_IGNORE() UNITY_TEST_IGNORE(__LINE__, NULL)
70 #define TEST_ASSERT(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expression Evaluated To FALSE")
71 #define TEST_ASSERT_TRUE(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expected TRUE Was FALSE")
72 #define TEST_ASSERT_UNLESS(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expression Evaluated To TRUE")
73 #define TEST_ASSERT_FALSE(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expected FALSE Was TRUE")
74 #define TEST_ASSERT_NULL(pointer) UNITY_TEST_ASSERT_NULL( (pointer), __LINE__, " Expected NULL")
75 #define TEST_ASSERT_NOT_NULL(pointer) UNITY_TEST_ASSERT_NOT_NULL((pointer), __LINE__, " Expected Non-NULL"
    [all...]
  /src/external/bsd/atf/dist/atf-c/detail/
sanity.h 42 atf_sanity_inv(__FILE__, __LINE__, #x); \
47 atf_sanity_pre(__FILE__, __LINE__, #x); \
52 atf_sanity_post(__FILE__, __LINE__, #x); \
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
assert.h 13 __FILE__, __LINE__, #e); \
24 __FILE__, __LINE__); \
35 __FILE__, __LINE__); \
  /src/external/bsd/jemalloc/include/jemalloc/internal/
assert.h 13 __FILE__, __LINE__, #e); \
24 __FILE__, __LINE__); \
35 __FILE__, __LINE__); \
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
assert.h 13 __FILE__, __LINE__, #e); \
24 __FILE__, __LINE__); \
35 __FILE__, __LINE__); \
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
assert.h 13 __FILE__, __LINE__, #e); \
24 __FILE__, __LINE__); \
35 __FILE__, __LINE__); \
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
ioloop-common.h 37 #define dnssd_txn_create_shared() dnssd_txn_create_shared_(__FILE__, __LINE__)
dnssd-client.h 23 #define dnssd_client_retain(watcher) dnssd_client_retain_(watcher, __FILE__, __LINE__)
24 #define dnssd_client_release(watcher) dnssd_client_release_(watcher, __FILE__, __LINE__)
  /src/external/bsd/kyua-cli/dist/utils/logging/
macros.hpp 44 __FILE__, __LINE__, message)
51 __FILE__, __LINE__, message)
58 __FILE__, __LINE__, message)
65 __FILE__, __LINE__, message)
  /src/crypto/external/bsd/openssh/dist/
log.h 106 #define do_log2(level, ...) sshlog(__FILE__, __func__, __LINE__, 0, level, NULL, __VA_ARGS__)
107 #define debug3(...) sshlog(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_DEBUG3, NULL, __VA_ARGS__)
108 #define debug2(...) sshlog(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_DEBUG2, NULL, __VA_ARGS__)
109 #define debug(...) sshlog(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_DEBUG1, NULL, __VA_ARGS__)
110 #define verbose(...) sshlog(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_VERBOSE, NULL, __VA_ARGS__)
111 #define logit(...) sshlog(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_INFO, NULL, __VA_ARGS__)
112 #define error(...) sshlog(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_ERROR, NULL, __VA_ARGS__)
113 #define fatal(...) sshfatal(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_FATAL, NULL, __VA_ARGS__)
114 #define logdie(...) sshlogdie(__FILE__, __func__, __LINE__, 0, SYSLOG_LEVEL_ERROR, NULL, __VA_ARGS__)
117 #define do_log2_f(level, ...) sshlog(__FILE__, __func__, __LINE__, 1, level, NULL, __VA_ARGS__
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
gdb_assert.h 31 (gdb_assert_fail (#expr, __FILE__, __LINE__, __func__), 0)))
43 internal_error_loc (__FILE__, __LINE__, _("%s: " message), __func__, \
  /src/external/gpl3/gdb/dist/sim/common/
sim-assert.h 42 lbasename (__FILE__), __LINE__, #EXPRESSION); \
64 lbasename (__FILE__), __LINE__, #EXPRESSION); \
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_assert.h 31 (gdb_assert_fail (#expr, __FILE__, __LINE__, __func__), 0)))
43 internal_error_loc (__FILE__, __LINE__, _("%s: " message), __func__, \
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-assert.h 42 lbasename (__FILE__), __LINE__, #EXPRESSION); \
64 lbasename (__FILE__), __LINE__, #EXPRESSION); \
  /src/external/bsd/libc++/dist/libcxxrt/test/
test_demangle.cc 39 test<int>("int", __LINE__);
40 test<char[4]>("char [4]", __LINE__);
41 test<char[]>("char []", __LINE__);
43 "N::Templated<N::Templated<long, 7>, 8>", __LINE__);
45 "N::Templated<void (long), -1>", __LINE__);
  /src/external/mpl/bind/dist/lib/isc/include/isc/
assertions.h 48 ((isc_assertion_failed)(__FILE__, __LINE__, \
54 ((isc_assertion_failed)(__FILE__, __LINE__, \
60 ((isc_assertion_failed)(__FILE__, __LINE__, \
66 ((isc_assertion_failed)(__FILE__, __LINE__, \
71 (isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \

Completed in 105 milliseconds

1 2 3 4 5 6 7 8 91011>>