HomeSort by relevance Sort by last modified time
    Searched refs:recovered (Results 1 - 25 of 36) sorted by null

1 2

  /external/libchrome/base/metrics/
persistent_histogram_allocator_unittest.cc 104 std::unique_ptr<HistogramBase> recovered; local
110 recovered = histogram_iter.GetNext();
111 ASSERT_TRUE(recovered);
112 recovered->CheckName("TestHistogram");
114 recovered = histogram_iter.GetNext();
115 ASSERT_TRUE(recovered);
116 recovered->CheckName("TestLinearHistogram");
118 recovered = histogram_iter.GetNext();
119 ASSERT_TRUE(recovered);
120 recovered->CheckName("TestBooleanHistogram")
183 std::unique_ptr<HistogramBase> recovered; local
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
reference.C 13 int recovered = 0; variable
70 void (^b)(void) = ^{ recovered = _version; };
89 if (recovered == 1) {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
forward_error_correction.cc 456 // Free the memory for any existing recovered packets, if the user hasn't.
587 // Search for missing packets which have arrived or have been recovered by
596 // Set the FEC pointers to all recovered packets so that we don't have to
601 // Search for the next recovered packet in |not_recovered|.
646 RecoveredPacket* recovered) {
657 recovered->pkt = new Packet;
658 memset(recovered->pkt->data, 0, IP_PACKET_SIZE);
659 recovered->returned = false;
660 recovered->was_recovered = true;
665 sizeof(recovered->pkt->data) - kRtpHeaderSize
    [all...]
forward_error_correction.h 82 // recovered packets. In most situations this could be retrieved from other
98 // The recovered list parameter of #DecodeFEC() will reference structs of
106 bool was_recovered; // Will be true if this packet was recovered by
168 * the output recovered packet list. The recovered list will be sorted by
170 * should be called as new packets arrive, with the recovered list being
175 * function will handle allocation of recovered packets and optionally
176 * deleting of all packet memory. The user may delete the recovered list
178 * recovered list.\n
184 * or accessible through the recovered list
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprog/
crash.go 19 fmt.Printf(" recovered")
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/
crash.go 19 fmt.Printf(" recovered")
  /prebuilts/go/linux-x86/src/runtime/testdata/testprog/
crash.go 19 fmt.Printf(" recovered")
  /prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/
crash.go 19 fmt.Printf(" recovered")
  /prebuilts/go/darwin-x86/src/runtime/
signal_plan9.go 20 // Traps that we cannot be recovered.
39 // Other system notes are more serious and cannot be recovered.
crash_test.go 185 want := "main: recovered done\nnew-thread: recovered done\nsecond-new-thread: recovered done\nmain-again: recovered done\n"
353 t.Errorf("test #%d: recovered value %v(type %T) does not implement runtime.Error", i, got, got)
358 func panicValue(fn func()) (recovered interface{}) {
360 recovered = recover()
panic.go 407 if p.recovered {
408 print(" [recovered]")
506 if p.recovered {
560 if p != nil && !p.recovered && argp == uintptr(p.argp) {
561 p.recovered = true
  /prebuilts/go/linux-x86/src/runtime/
signal_plan9.go 20 // Traps that we cannot be recovered.
39 // Other system notes are more serious and cannot be recovered.
crash_test.go 185 want := "main: recovered done\nnew-thread: recovered done\nsecond-new-thread: recovered done\nmain-again: recovered done\n"
353 t.Errorf("test #%d: recovered value %v(type %T) does not implement runtime.Error", i, got, got)
358 func panicValue(fn func()) (recovered interface{}) {
360 recovered = recover()
panic.go 407 if p.recovered {
408 print(" [recovered]")
506 if p.recovered {
560 if p != nil && !p.recovered && argp == uintptr(p.argp) {
561 p.recovered = true
  /prebuilts/go/darwin-x86/misc/cgo/testsigfwd/
main.go 105 // Test that the signal originating in Go is handled (and recovered) by Go.
  /prebuilts/go/darwin-x86/src/time/
tick.go 52 // Ticker cannot be recovered by the garbage collector; it "leaks".
sleep.go 147 // The underlying Timer is not recovered by the garbage collector
  /prebuilts/go/linux-x86/misc/cgo/testsigfwd/
main.go 105 // Test that the signal originating in Go is handled (and recovered) by Go.
  /prebuilts/go/linux-x86/src/time/
tick.go 52 // Ticker cannot be recovered by the garbage collector; it "leaks".
sleep.go 147 // The underlying Timer is not recovered by the garbage collector
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMapTest.java 119 String recovered = TrieMap.ByteConverter.getChars(bytes, 0, limit); local
120 if (!source.equals(recovered)) {
121 assertEquals("Char/Byte Conversion", source, recovered);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieMapTest.java 118 String recovered = TrieMap.ByteConverter.getChars(bytes, 0, limit); local
119 if (!source.equals(recovered)) {
120 assertEquals("Char/Byte Conversion", source, recovered);
  /external/boringssl/src/crypto/evp/
evp_extra_test.cc 435 std::vector<uint8_t> recovered; local
436 recovered.resize(out_len);
438 ASSERT_TRUE(EVP_PKEY_verify_recover(ctx.get(), recovered.data(), &out_len,
440 EXPECT_EQ(Bytes(kDummyHash), Bytes(recovered.data(), out_len));
442 out_len = recovered.size();
444 ASSERT_TRUE(EVP_PKEY_verify_recover(ctx.get(), recovered.data(), &out_len,
    [all...]
  /external/valgrind/none/tests/
cmdline1.stdout.exp 134 recovered by stack scanning [5]
cmdline2.stdout.exp 134 recovered by stack scanning [5]

Completed in 1123 milliseconds

1 2