Searched refs:BadFile (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_fcntl.py | 54 class BadFile: class 94 fcntl.fcntl(BadFile(-1), fcntl.F_SETFL, os.O_NONBLOCK) 98 fcntl.fcntl(BadFile('spam'), fcntl.F_SETFL, os.O_NONBLOCK) 107 fcntl.fcntl(BadFile(INT_MAX + 1), fcntl.F_SETFL, os.O_NONBLOCK) 111 fcntl.fcntl(BadFile(INT_MIN - 1), fcntl.F_SETFL, os.O_NONBLOCK)
|
D | test_tarfile.py | 1141 class BadFile(StringIO.StringIO): class 1148 f = BadFile()
|
/external/python/cpython3/Lib/test/ |
D | test_fcntl.py | 48 class BadFile: class 105 fcntl.fcntl(BadFile(-1), fcntl.F_SETFL, os.O_NONBLOCK) 109 fcntl.fcntl(BadFile('spam'), fcntl.F_SETFL, os.O_NONBLOCK) 118 fcntl.fcntl(BadFile(INT_MAX + 1), fcntl.F_SETFL, os.O_NONBLOCK) 122 fcntl.fcntl(BadFile(INT_MIN - 1), fcntl.F_SETFL, os.O_NONBLOCK)
|
D | test_tarfile.py | 1405 class BadFile(io.BytesIO): class 1412 f = BadFile()
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | cppcoreguidelines-owning-memory.rst | 75 FILE* BadFile = fopen("another_file.txt", "w"); // Bad, warned 80 fclose(BadFile); // BadFile is not an 'owner<>', will be warned
|
/external/llvm-project/llvm/unittests/DebugInfo/GSYM/ |
D | GSYMTest.cpp | 530 LineEntry BadFile(ValidAddr, InvalidFileIdx, ValidLine); in TEST() local 531 EXPECT_FALSE(BadFile.isValid()); in TEST()
|