Home
last modified time | relevance | path

Searched refs:terminated (Results 1 – 25 of 757) sorted by relevance

12345678910>>...31

/external/linux-kselftest/tools/testing/selftests/powerpc/
Dharness.c29 bool terminated; in run_test() local
50 terminated = false; in run_test()
60 if (terminated) { in run_test()
67 terminated = true; in run_test()
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/framework/foundation/
Dstream_testing.py44 terminated = False
46 if terminated:
49 terminated = True
/external/llvm-project/lldb/packages/Python/lldbsuite/test/test_runner/
Dprocess_control.py589 terminated = True
595 terminated = False
597 return terminated, done_trying
625 terminated = self.returncode is not None
629 return terminated, done_trying
642 terminated = self.returncode is not None
644 return terminated, done_trying
652 terminated = self.returncode is not None
654 return terminated, done_trying
/external/linux-kselftest/tools/testing/selftests/arm64/signal/testcases/
Dtestcases.c55 bool terminated = false; in validate_reserved() local
65 while (head && !terminated && offs < resv_sz) { in validate_reserved()
76 terminated = true; in validate_reserved()
144 if (terminated && !(flags & FPSIMD_CTX)) { in validate_reserved()
/external/rust/crates/cexpr/src/
Dliteral.rs48 use nom::sequence::{delimited, pair, preceded, terminated, tuple};
210 terminated(opt(c_width_prefix), char('\'')), in c_char()
257 terminated( in c_int()
301 terminated( in c_float()
309 terminated( in c_float()
317 terminated( in c_float()
326 terminated( in c_float()
335 terminated(recognize(many1(complete(decimal))), float_width), in c_float()
/external/apache-http/src/org/apache/http/message/
DBasicHeaderValueParser.java331 boolean terminated = false; in parseNameValuePair()
345 terminated = true; in parseNameValuePair()
352 terminated = true; in parseNameValuePair()
359 if (terminated) { in parseNameValuePair()
376 terminated = true; in parseNameValuePair()
404 if (terminated) { in parseNameValuePair()
/external/toolchain-utils/crosperf/
Dbenchmark_run_unittest.py224 br.terminated = True
237 br.terminated = False
290 self.assertFalse(br.terminated)
298 self.assertTrue(br.terminated)
317 self.assertFalse(br.terminated)
325 self.assertTrue(br.terminated)
335 br.terminated = True
338 br.terminated = False
Dbenchmark_run.py45 self.terminated = False
124 if self.terminated:
154 self.terminated = True
167 if self.terminated:
/external/toolchain-utils/binary_search_tool/
Dbinary_search_state.py244 terminated = self.DoBinarySearchBadItems()
246 if not terminated:
311 terminated = False
312 while self.search_cycles < self.iterations and not terminated:
326 terminated = self.binary_search.SetStatus(status)
328 if terminated:
330 if not terminated:
333 return terminated
547 terminated = False
549 while self.search_cycles < self.iterations and not terminated:
[all …]
/external/autotest/client/bin/
Dprespawner.py55 self.terminated = False
80 while not self.terminated:
104 self.terminated = True
/external/rust/crates/nom/tests/
Dmultiline.rs6 sequence::terminated,
19 terminated(alphanumeric, end_of_line)(input) in read_line()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServerImpl.java102 @GuardedBy("lock") private boolean terminated; field in ServerImpl
177 checkState(!terminated, "Already terminated"); in getPort()
271 while (!terminated && (timeoutNanos = endTimeNanos - System.nanoTime()) > 0) { in awaitTermination()
274 return terminated; in awaitTermination()
281 while (!terminated) { in awaitTermination()
290 return terminated; in isTerminated()
314 if (terminated) { in checkForTermination()
317 terminated = true; in checkForTermination()
/external/oj-libjdwp/src/share/npt/
DREADME.txt29 /* After all uses is done, it can be terminated, however, if the
32 * you will need to wait here until all those threads have terminated.
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_device.h285 bool terminated; member
289 terminated(pk.terminated) {} in PendingKernel()
290 PendingKernel() : queued_count(0), weight(0), terminated(false) {} in PendingKernel()
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/
Ddynamic-malformed.test282 ## Check how we handle cases when the dynamic string table is not null-terminated.
285 ## the not null-terminated dynamic string table.
295 ## the not null-terminated dynamic string table.
305 ## the not null-terminated dynamic string table.
314 …ng table at offset 0xb0: unable to read the string at 0xb4: the string table is not null-terminated
315 …ng table at offset 0xb0: unable to read the string at 0xb0: the string table is not null-terminated
317 …ng table at offset 0xb0: unable to read the string at 0xb1: the string table is not null-terminated
319 …ng table at offset 0xb0: unable to read the string at 0xb2: the string table is not null-terminated
321 …ng table at offset 0xb0: unable to read the string at 0xb3: the string table is not null-terminated
323 …ng table at offset 0xb0: unable to read the string at 0xb4: the string table is not null-terminated
[all …]
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dbugprone-string-literal-with-embedded-nul.rst26 (NUL-terminated) string.
29 constructor expecting a NUL-terminated string. The bytes after the first NUL
/external/openscreen/osp/msgs/
Dosp_messages.cddl139 user-terminated-via-controller: 11
156 user-terminated-via-receiver: 2
158 user-terminated-via-controller: 11
/external/e2fsprogs/tests/f_baddotdir/
Dexpect.120 '.' directory entry in directory inode 17 is not NULL terminated
23 '..' directory entry in directory inode 17 is not NULL terminated
/external/llvm-project/lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/
Dptyprocess.py164 self.terminated = False
672 self.terminated = True
677 self.terminated = True
692 if self.terminated:
749 self.terminated = True
754 self.terminated = True
/external/skqp/docs/
Dmarkup.bmh9 # comments may terminated by linefeed or double hash ## <- end of comment
14 Keywords are terminated by double hash and may be labeled
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DNettyServerTransport.java66 private boolean terminated; field in NettyServerTransport
196 if (!terminated) { in notifyTerminated()
197 terminated = true; in notifyTerminated()
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/
Ddebug_pub_tables_error_cases.s47 ## This set is terminated just after the header.
86 # ERR: error: name lookup table at offset 0x4c parsing failed: no null terminated string at offset …
99 ## This set contains a string which is not properly terminated.
100 # ERR: error: name lookup table at offset 0x5f parsing failed: no null terminated string at offset …
/external/junit/src/main/java/org/junit/internal/runners/
DMethodRoadie.java71 boolean terminated = service.awaitTermination(timeout, in runWithTimeout()
73 if (!terminated) { in runWithTimeout()
/external/libxml2/result/HTML/
D758606_2.html.sax4 SAX.error: Comment not terminated
D758606.html.sax4 SAX.error: Comment not terminated

12345678910>>...31