Home
last modified time | relevance | path

Searched refs:bad (Results 1 – 25 of 1280) sorted by relevance

12345678910>>...52

/external/libmtp/logs/
Dmtp-detect-amazon-fire-hd8.txt11 Error 7: Found a bad handle, trying to ignore it.
12 Error 7: Found a bad handle, trying to ignore it.
13 Error 7: Found a bad handle, trying to ignore it.
14 Error 7: Found a bad handle, trying to ignore it.
15 Error 7: Found a bad handle, trying to ignore it.
16 Error 7: Found a bad handle, trying to ignore it.
17 Error 7: Found a bad handle, trying to ignore it.
18 Error 7: Found a bad handle, trying to ignore it.
19 Error 7: Found a bad handle, trying to ignore it.
20 Error 7: Found a bad handle, trying to ignore it.
[all …]
/external/e2fsprogs/tests/f_h_reindex/
Dexpect.15 Problem in HTREE directory inode 16001: block #1 has bad max hash
6 Problem in HTREE directory inode 16001: block #2 has bad min hash
7 Problem in HTREE directory inode 16001: block #2 has bad max hash
8 Problem in HTREE directory inode 16001: block #3 has bad min hash
9 Problem in HTREE directory inode 16001: block #3 has bad max hash
10 Problem in HTREE directory inode 16001: block #4 has bad min hash
11 Problem in HTREE directory inode 16001: block #4 has bad max hash
12 Problem in HTREE directory inode 16001: block #5 has bad min hash
13 Problem in HTREE directory inode 16001: block #5 has bad max hash
14 Problem in HTREE directory inode 16001: block #6 has bad min hash
[all …]
/external/vboot_reference/tests/futility/
Dtest_gbb_utility.sh112 cat ${TMP}.blob | ${REPLACE} 0x4 2 > ${TMP}.blob.bad
113 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
116 cat ${TMP}.blob | ${REPLACE} 0x8 0x81 > ${TMP}.blob.bad
117 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
120 cat ${TMP}.blob | ${REPLACE} 0x8 0x7f > ${TMP}.blob.bad
121 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
124 cat ${TMP}.blob | ${REPLACE} 0x8f 0x41 > ${TMP}.blob.bad
125 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
135 cat ${TMP}.blob | ${REPLACE} 0x8f 0x41 > ${TMP}.blob.bad
136 if ${FUTILITY} gbb_utility ${TMP}.blob.bad; then false; fi
[all …]
/external/clang/test/Sema/
Dformat-strings-ms.c51 double bad; in w_test() local
52 …printf("%wc", bad); // expected-warning{{format specifies type 'wint_t' (aka 'int') but the argume… in w_test()
53 …printf("%wC", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') bu… in w_test()
54 …printf("%C", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') but… in w_test()
55 …printf("%ws", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
56 …printf("%wS", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
57 …printf("%S", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
58 …scanf("%wc", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
59 …scanf("%wC", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
60 …scanf("%C", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
[all …]
/external/python/cpython2/Lib/test/
Dtest_robotparser.py61 bad = ['/cyberworld/map/index.html','/tmp/xxx','/foo.html'] variable
63 RobotTest(1, doc, good, bad)
79 bad = ['/cyberworld/map/index.html'] variable
81 RobotTest(2, doc, good, bad)
91 bad = ['/cyberworld/map/index.html','/','/tmp/'] variable
93 RobotTest(3, doc, good, bad)
107 bad = ['/tmp','/tmp.html','/tmp/a.html', variable
112 RobotTest(4, doc, good, bad, 'figtree')
113 RobotTest(5, doc, good, bad, 'FigTree Robot libwww-perl/5.04')
125 bad = ['/tmp/','/tmp/a.html', variable
[all …]
/external/avb/test/
Davb_util_unittest.cc70 AvbFooter bad; in TEST_F() local
105 bad = h; in TEST_F()
106 bad.magic[0] = 'x'; in TEST_F()
107 EXPECT_EQ(0, avb_footer_validate_and_byteswap(&bad, &s)); in TEST_F()
110 bad = h; in TEST_F()
111 bad.version_major = htobe32(AVB_FOOTER_VERSION_MAJOR + 1); in TEST_F()
112 EXPECT_EQ(0, avb_footer_validate_and_byteswap(&bad, &s)); in TEST_F()
118 AvbKernelCmdlineDescriptor bad; in TEST_F() local
143 bad = h; in TEST_F()
144 bad.parent_descriptor.tag = htobe64(0xf00dd00d); in TEST_F()
[all …]
/external/llvm/test/CodeGen/PowerPC/
Dfast-isel-fcmp-nan.ll9 br i1 %t1, label %good, label %bad
11 bad:
25 br i1 %t1, label %good, label %bad
27 bad:
41 br i1 %t1, label %good, label %bad
43 bad:
56 br i1 %t1, label %good, label %bad
58 bad:
71 br i1 %t1, label %good, label %bad
73 bad:
[all …]
/external/mesa3d/src/compiler/glsl/
Dast_type.cpp712 ast_type_qualifier bad; in validate_flags() local
713 bad.flags.i = this->flags.i & ~allowed_flags.flags.i; in validate_flags()
714 if (bad.flags.i == 0) in validate_flags()
723 bad.flags.q.invariant ? " invariant" : "", in validate_flags()
724 bad.flags.q.precise ? " precise" : "", in validate_flags()
725 bad.flags.q.constant ? " constant" : "", in validate_flags()
726 bad.flags.q.attribute ? " attribute" : "", in validate_flags()
727 bad.flags.q.varying ? " varying" : "", in validate_flags()
728 bad.flags.q.in ? " in" : "", in validate_flags()
729 bad.flags.q.out ? " out" : "", in validate_flags()
[all …]
/external/libcxx/test/std/input.output/iostreams.base/ios/iostate.flags/
Dbad.pass.cpp26 assert(ios.bad()); in main()
28 assert(ios.bad()); in main()
33 assert(!ios.bad()); in main()
35 assert(!ios.bad()); in main()
37 assert(!ios.bad()); in main()
39 assert(ios.bad()); in main()
/external/selinux/libsepol/src/
Dpolicydb.c1862 goto bad; in mls_read_semantic_level_helper()
1871 goto bad; in mls_read_semantic_level_helper()
1881 goto bad; in mls_read_semantic_level_helper()
1889 bad: in mls_read_semantic_level_helper()
2015 goto bad; in perm_read()
2019 goto bad; in perm_read()
2024 goto bad; in perm_read()
2028 bad: in perm_read()
2048 goto bad; in common_read()
2052 goto bad; in common_read()
[all …]
/external/tcpdump/tests/
Dikev2fourv4.out2 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0765 -> 0xf5df!] isakmp 2.0 msgid 00000000 coo…
22 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0629 -> 0x0cd0!] isakmp 2.0 msgid 00000000 coo…
25 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0785 -> 0x7702!] isakmp 2.0 msgid 00000000 coo…
46 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x071d -> 0x8650!] isakmp 2.0 msgid 00000000 coo…
58 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07d9 -> 0xb2d6!] isakmp 2.0 msgid 00000001 coo…
61 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0689 -> 0x0748!] isakmp 2.0 msgid 00000001 coo…
64 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x35ac!] isakmp 2.0 msgid 00000002 coo…
67 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x06c9 -> 0xdeaf!] isakmp 2.0 msgid 00000003 coo…
70 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0xc72b!] isakmp 2.0 msgid 00000002 coo…
73 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0x4119!] isakmp 2.0 msgid 00000003 coo…
[all …]
Dikev2fourv.out2 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0765 -> 0xf5df!] isakmp 2.0 msgid 00000000 coo…
22 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0629 -> 0x0cd0!] isakmp 2.0 msgid 00000000 coo…
25 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0785 -> 0x7702!] isakmp 2.0 msgid 00000000 coo…
46 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x071d -> 0x8650!] isakmp 2.0 msgid 00000000 coo…
58 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07d9 -> 0xb2d6!] isakmp 2.0 msgid 00000001 coo…
61 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0689 -> 0x0748!] isakmp 2.0 msgid 00000001 coo…
64 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x35ac!] isakmp 2.0 msgid 00000002 coo…
67 …192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x06c9 -> 0xdeaf!] isakmp 2.0 msgid 00000003 coo…
70 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0xc72b!] isakmp 2.0 msgid 00000002 coo…
73 …192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0x4119!] isakmp 2.0 msgid 00000003 coo…
[all …]
/external/e2fsprogs/tests/f_bbinode/
Dexpect.13 Entry 'a6' in / (2) points to inode (17) located in a bad block.
6 Entry 'a7' in / (2) points to inode (18) located in a bad block.
9 Entry 'a8' in / (2) points to inode (19) located in a bad block.
12 Entry 'b1' in / (2) points to inode (20) located in a bad block.
15 Entry 'b2' in / (2) points to inode (21) located in a bad block.
18 Entry 'b3' in / (2) points to inode (22) located in a bad block.
21 Entry 'b4' in / (2) points to inode (23) located in a bad block.
24 Entry 'b5' in / (2) points to inode (24) located in a bad block.
/external/python/cpython2/Tools/scripts/
Dpathfix.py51 bad = 0
54 if recursedown(arg): bad = 1
57 bad = 1
59 if fix(arg): bad = 1
60 sys.exit(bad)
68 bad = 0
83 if fix(fullname): bad = 1
85 if recursedown(fullname): bad = 1
86 return bad
Dmethfix.py39 bad = 0
45 if recursedown(arg): bad = 1
48 bad = 1
50 if fix(arg): bad = 1
51 sys.exit(bad)
59 bad = 0
74 if fix(fullname): bad = 1
76 if recursedown(fullname): bad = 1
77 return bad
Dclassfix.py42 bad = 0
48 if recursedown(arg): bad = 1
51 bad = 1
53 if fix(arg): bad = 1
54 sys.exit(bad)
62 bad = 0
77 if fix(fullname): bad = 1
79 if recursedown(fullname): bad = 1
80 return bad
/external/llvm/test/Verifier/
Ddbg-typerefs.ll2 ; Check that the debug info verifier gives nice errors for bad type refs
10 !2 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, baseType: !"2.bad")
12 !4 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, baseType: !"4.bad")
25 ; CHECK-SAME: baseType: !"2.bad"
26 ; CHECK-NEXT: !"2.bad"
29 ; CHECK-SAME: baseType: !"4.bad"
30 ; CHECK-NEXT: !"4.bad"
/external/python/cpython2/Demo/scripts/
Deqfix.py42 bad = 0
48 if recursedown(arg): bad = 1
51 bad = 1
53 if fix(arg): bad = 1
54 sys.exit(bad)
62 bad = 0
77 if fix(fullname): bad = 1
79 if recursedown(fullname): bad = 1
80 return bad
/external/toolchain-utils/binary_search_tool/cros_pkg/
DREADME.cros_pkg_triage4 thing or thing(s) in the set is 'bad'. binary_search_state.py assumes
6 ane one which contains at least one bad item. binary_search_state.py
7 then copies items from the good and bad sets into a working set and
8 tests the result (good or bad). binary_search_state.py requires that
15 binary_search_state.py in order to find the bad package or set of
66 or bad. This script tests to see if the image
87 is good or bad. This script requires user
89 good or bad.
98 'bad' build tree into the work area.
121 - You have saved the complete build trees for both the good and bad builds.
[all …]
/external/regex-re2/util/
Drune.cc70 goto bad; in chartorune()
73 goto bad; in chartorune()
76 goto bad; in chartorune()
87 goto bad; in chartorune()
91 goto bad; in chartorune()
102 goto bad; in chartorune()
106 goto bad; in chartorune()
119 bad: in chartorune()
/external/wpa_supplicant_8/src/wps/
Dhttpread.c207 goto bad; in httpread_hdr_analyze()
220 goto bad; in httpread_hdr_analyze()
267 goto bad; in httpread_hdr_analyze()
305 goto bad; in httpread_hdr_analyze()
307 goto bad; in httpread_hdr_analyze()
355 bad: in httpread_hdr_analyze()
383 goto bad; in httpread_read_handler()
394 goto bad; in httpread_read_handler()
402 goto bad; in httpread_read_handler()
430 goto bad; in httpread_read_handler()
[all …]
/external/e2fsprogs/tests/f_badprimary/
Dexpect.14 The primary superblock (1) is on the bad block list.
6 If the block is really bad, the filesystem can not be fixed.
7 You can remove this block from the bad block list and hope
12 Block 2 in the primary group descriptors is on the bad block list
14 If the block is really bad, the filesystem can not be fixed.
15 You can remove this block from the bad block list and hope
/external/vboot_reference/cgpt/
Dcgpt_add.c183 goto bad; in CgptSetAttributes()
189 goto bad; in CgptSetAttributes()
199 bad: in CgptSetAttributes()
221 goto bad; in CgptGetPartitionDetails()
228 goto bad; in CgptGetPartitionDetails()
233 goto bad; in CgptGetPartitionDetails()
244 goto bad; in CgptGetPartitionDetails()
262 bad: in CgptGetPartitionDetails()
308 goto bad; in CgptAdd()
312 goto bad; in CgptAdd()
[all …]
/external/clang/test/SemaObjC/
Dobjc-cstyle-args-in-methods.m5 - (id)bad:(id)one, id two, double three;
10 - (id)bad:(id)one, id two, double three { return two; }
17 [foo bad:@"One", @"Two"]; // expected-error {{too few arguments to method call}}
18 [foo bad:@"One", @"Two", 3.14];
19 [foo bad:@"One", @"Two", 3.14, @"Two"]; // expected-error {{too many arguments to method call}}
/external/libpcap/
Dpcap-libdlpi.c130 goto bad; in pcap_activate_libdlpi()
137 goto bad; in pcap_activate_libdlpi()
161 goto bad; in pcap_activate_libdlpi()
168 goto bad; in pcap_activate_libdlpi()
183 goto bad; in pcap_activate_libdlpi()
191 goto bad; in pcap_activate_libdlpi()
196 goto bad; in pcap_activate_libdlpi()
204 goto bad; in pcap_activate_libdlpi()
214 goto bad; in pcap_activate_libdlpi()
220 goto bad; in pcap_activate_libdlpi()
[all …]

12345678910>>...52