Home
last modified time | relevance | path

Searched refs:actual (Results 1 – 25 of 28) sorted by relevance

12

/system/core/libcutils/tests/
Dtrace-dev_test.cpp57 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/
Dgglmul_test.cpp123 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/
Dtest_set_wifi_regulatory24 local actual="$1"
27 if [ "${actual}" != "${expected}" ]; then
28 echo "FAIL: expected |${expected}|, got |${actual}|"
/system/media/audio_utils/
Dtinysndfile.c83 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 …]
DDoxyfile.orig1105 # darker. The value divided by 100 is the actual gamma applied, so 80 represents
/system/extras/tests/net_test/
Dmultinetwork_base.py504 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)
Dping6_test.py263 actual = self.ReadProcNetSocket(name)[-1]
264 self.assertListEqual(expected, actual)
/system/update_engine/common/
Dtest_utils.cc227 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/
Dextent_ranges_unittest.cc259 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/
Dtombstone.cpp506 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/
DREADME18 The current implementation of the web server uses libmicrohttpd for actual
/system/vold/
DKeyStorage.cpp74 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/
DSYNC.TXT52 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/
DREADME29 for all 20sec). However, this will not affect the actual captured trace during
/system/bt/doc/
Dpower_management.md6 `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/
Dperfprofd_test.cc275 static void compareLogMessages(const std::string &actual, in compareLogMessages() argument
281 std::string sqact = squeezeWhite(actual, "actual"); in compareLogMessages()
/system/core/sdcard/
Dsdcard.c372 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/
Dzygote.te89 # the actual dalvik-cache.
DREADME78 the mac_permissions.xml signature stanzas with actual public keys found in
/system/core/libutils/
DREADME7 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/
DTESTING52 - to see the actual compiler commands that are run:
DNETLINK_MESSAGES.txt250 But the actual code for reading this array is as follows:
/system/connectivity/shill/doc/
Dservice-api.txt612 actual value may not have changed.
/system/tpm/trunks/generator/
Draw_structures.txt1179 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.
Draw_structures_fixed.txt1179 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.

12