/system/core/libcutils/tests/ |
D | trace-dev_test.cpp | 57 std::string actual; in TEST_F() local 58 ASSERT_TRUE(android::base::ReadFdToString(atrace_marker_fd, &actual)); in TEST_F() 60 ASSERT_STREQ(expected.c_str(), actual.c_str()); in TEST_F() 71 std::string actual; in TEST_F() local 72 ASSERT_TRUE(android::base::ReadFdToString(atrace_marker_fd, &actual)); in TEST_F() 74 ASSERT_STREQ(expected.c_str(), actual.c_str()); in TEST_F() 82 ASSERT_TRUE(android::base::ReadFdToString(atrace_marker_fd, &actual)); in TEST_F() 83 ASSERT_STREQ(expected.c_str(), actual.c_str()); in TEST_F() 94 std::string actual; in TEST_F() local 95 ASSERT_TRUE(android::base::ReadFdToString(atrace_marker_fd, &actual)); in TEST_F() [all …]
|
/system/core/libpixelflinger/tests/gglmul/ |
D | gglmul_test.cpp | 123 GGLfixed actual, expected; in gglMulx_test() local 131 actual = gglMulx(test->x, test->y, test->shift); in gglMulx_test() 134 if(actual == expected) in gglMulx_test() 138 actual, expected); in gglMulx_test() 166 GGLfixed actual, expected; in gglMulAddx_test() local 174 actual = gglMulAddx(test->x, test->y,test->a, test->shift); in gglMulAddx_test() 177 if(actual == expected) in gglMulAddx_test() 181 actual, expected); in gglMulAddx_test() 209 GGLfixed actual, expected; in gglMulSubx_test() local 217 actual = gglMulSubx(test->x, test->y, test->a, test->shift); in gglMulSubx_test() [all …]
|
/system/connectivity/shill/bin/ |
D | test_set_wifi_regulatory | 24 local actual="$1" 27 if [ "${actual}" != "${expected}" ]; then 28 echo "FAIL: expected |${expected}|, got |${actual}|"
|
/system/media/audio_utils/ |
D | tinysndfile.c | 83 size_t actual; in sf_open_read() local 84 actual = fread(wav, sizeof(char), sizeof(wav), stream); in sf_open_read() 85 if (actual < 12) { in sf_open_read() 87 fprintf(stderr, "actual %zu < 44\n", actual); in sf_open_read() 116 actual = fread(chunk, sizeof(char), sizeof(chunk), stream); in sf_open_read() 117 if (actual != sizeof(chunk)) { in sf_open_read() 119 fprintf(stderr, "actual %zu != %zu\n", actual, sizeof(chunk)); in sf_open_read() 145 actual = fread(fmt, sizeof(char), 2, stream); in sf_open_read() 146 if (actual != 2) { in sf_open_read() 148 fprintf(stderr, "actual %zu != 2\n", actual); in sf_open_read() [all …]
|
D | Doxyfile.orig | 1105 # darker. The value divided by 100 is the actual gamma applied, so 80 represents
|
/system/extras/tests/net_test/ |
D | multinetwork_base.py | 504 def assertPacketMatches(self, expected, actual): argument 513 actual = actual.copy() 516 actualip = actual.getlayer("IP") 524 actualipv6 = actual.getlayer("IPv6") 531 actualudp = actual.getlayer("UDP") 545 actualtcp = actual.getlayer("TCP") 562 actual_real = actual.__class__(str(actual)) 568 def PacketMatches(self, expected, actual): argument 570 self.assertPacketMatches(expected, actual)
|
D | ping6_test.py | 263 actual = self.ReadProcNetSocket(name)[-1] 264 self.assertListEqual(expected, actual)
|
/system/update_engine/common/ |
D | test_utils.cc | 227 const brillo::Blob& actual) { in ExpectVectorsEq() argument 228 EXPECT_EQ(expected.size(), actual.size()); in ExpectVectorsEq() 229 if (expected.size() != actual.size()) in ExpectVectorsEq() 233 EXPECT_EQ(expected[i], actual[i]) << "offset: " << i; in ExpectVectorsEq() 234 is_all_eq = is_all_eq && (expected[i] == actual[i]); in ExpectVectorsEq()
|
/system/update_engine/payload_generator/ |
D | extent_ranges_unittest.cc | 259 vector<Extent> actual = in TEST() local 261 EXPECT_EQ(expected.size(), actual.size()); in TEST() 263 EXPECT_EQ(expected[j].start_block(), actual[j].start_block()) in TEST() 265 EXPECT_EQ(expected[j].num_blocks(), actual[j].num_blocks()) in TEST()
|
/system/core/debuggerd/ |
D | tombstone.cpp | 506 ssize_t actual = android_logger_list_read(logger_list, &log_entry); in dump_log_file() local 509 if (actual < 0) { in dump_log_file() 510 if (actual == -EINTR) { in dump_log_file() 513 } else if (actual == -EAGAIN) { in dump_log_file() 517 ALOGE("Error while reading log: %s\n", strerror(-actual)); in dump_log_file() 520 } else if (actual == 0) { in dump_log_file()
|
/system/webservd/ |
D | README | 18 The current implementation of the web server uses libmicrohttpd for actual
|
/system/vold/ |
D | KeyStorage.cpp | 74 static bool checkSize(const std::string& kind, size_t actual, size_t expected) { in checkSize() argument 75 if (actual != expected) { in checkSize() 77 << actual; in checkSize()
|
/system/core/adb/ |
D | SYNC.TXT | 52 comma (","). The first part is the actual path, while the second is a decimal 60 After this the actual file is sent in chunks. Each chunk has the following
|
/system/extras/ANRdaemon/ |
D | README | 29 for all 20sec). However, this will not affect the actual captured trace during
|
/system/bt/doc/ |
D | power_management.md | 6 `bta/sys` events via a callback. The actual state switching calls are handled 55 hex bitfields. The actual actions taken are determined by the 69 definitions available up to SNIFF7, but actual SSR values are only defined
|
/system/extras/perfprofd/tests/ |
D | perfprofd_test.cc | 275 static void compareLogMessages(const std::string &actual, in compareLogMessages() argument 281 std::string sqact = squeezeWhite(actual, "actual"); in compareLogMessages()
|
/system/core/sdcard/ |
D | sdcard.c | 372 char* actual; in find_file_within() local 380 actual = buf + pathlen + 1; in find_file_within() 381 memcpy(actual, name, namelen + 1); in find_file_within() 388 return actual; in find_file_within() 393 memcpy(actual, entry->d_name, namelen); in find_file_within() 399 return actual; in find_file_within()
|
/system/sepolicy/ |
D | zygote.te | 89 # the actual dalvik-cache.
|
D | README | 78 the mac_permissions.xml signature stanzas with actual public keys found in
|
/system/core/libutils/ |
D | README | 7 the Linux interface. That way the actual device runs as "light" as 86 tt value, but depending on available types, the actual numerical
|
/system/connectivity/shill/ |
D | TESTING | 52 - to see the actual compiler commands that are run:
|
D | NETLINK_MESSAGES.txt | 250 But the actual code for reading this array is as follows:
|
/system/connectivity/shill/doc/ |
D | service-api.txt | 612 actual value may not have changed.
|
/system/tpm/trunks/generator/ |
D | raw_structures.txt | 1179 The unmarshaling code examples are the actual code that would be produced by the automatic code 1180 generator used in the construction of the reference code. The actual code contains additional param… 13449 This union of all asymmetric schemes is used in each of the asymmetric scheme structures. The actual 14250 This shall be the actual signature information.
|
D | raw_structures_fixed.txt | 1179 The unmarshaling code examples are the actual code that would be produced by the automatic code 1180 generator used in the construction of the reference code. The actual code contains additional param… 13468 This union of all asymmetric schemes is used in each of the asymmetric scheme structures. The actual 14262 This shall be the actual signature information.
|