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

1 2 3 4

  /external/webrtc/webrtc/test/
rtp_file_writer.cc 31 RTC_CHECK(file_ != NULL);
45 RTC_CHECK(WriteUint16(len));
46 RTC_CHECK(WriteUint16(plen));
47 RTC_CHECK(WriteUint32(offset));
56 RTC_CHECK(WriteUint32(0));
57 RTC_CHECK(WriteUint32(0));
58 RTC_CHECK(WriteUint32(0));
59 RTC_CHECK(WriteUint16(0));
60 RTC_CHECK(WriteUint16(0));
  /external/webrtc/talk/app/webrtc/java/jni/
jni_onload.cc 44 RTC_CHECK(rtc::InitializeSSL()) << "Failed to InitializeSSL()";
52 RTC_CHECK(rtc::CleanupSSL()) << "Failed to CleanupSSL()";
jni_helpers.cc 47 RTC_CHECK(g_jvm) << "JNI_OnLoad failed to run?";
55 RTC_CHECK(((env != NULL) && (status == JNI_OK)) ||
72 RTC_CHECK(GetEnv() == prev_jni_ptr)
75 RTC_CHECK(status == JNI_OK) << "Failed to detach thread: " << status;
76 RTC_CHECK(!GetEnv()) << "Detaching was a successful no-op???";
80 RTC_CHECK(!pthread_key_create(&g_jni_ptr, &ThreadDestructor))
85 RTC_CHECK(!g_jvm) << "InitGlobalJniVariables!";
87 RTC_CHECK(g_jvm) << "InitGlobalJniVariables handed NULL?";
89 RTC_CHECK(!pthread_once(&g_jni_ptr_once, &CreateJNIPtrKey)) << "pthread_once";
121 RTC_CHECK(!pthread_getspecific(g_jni_ptr)
    [all...]
classreferenceholder.cc 54 RTC_CHECK(g_class_reference_holder == nullptr);
118 RTC_CHECK(classes_.empty()) << "Must call FreeReferences() before dtor!";
131 RTC_CHECK(it != classes_.end()) << "Unexpected GetClass() call for: " << name;
138 RTC_CHECK(localRef) << name;
141 RTC_CHECK(globalRef) << name;
143 RTC_CHECK(inserted) << "Duplicate class name: " << name;
androidnetworkmonitor_jni.cc 63 RTC_CHECK(thread_checker_.CalledOnValidThread());
71 RTC_CHECK(thread_checker_.CalledOnValidThread());
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtpcat.cc 31 RTC_CHECK(output.get() != NULL) << "Cannot open output file.";
37 RTC_CHECK(input.get() != NULL) << "Cannot open input file " << argv[i];
42 RTC_CHECK(output->WritePacket(&packet));
rtc_event_log_source.cc 66 RTC_CHECK(source->OpenFile(file_name));
74 RTC_CHECK(parser_.get());
  /external/webrtc/talk/app/webrtc/test/
androidtestinitializer.cc 55 RTC_CHECK(::base::android::IsVMInitialized());
62 RTC_CHECK(rtc::InitializeSSL()) << "Failed to InitializeSSL()";
  /external/webrtc/webrtc/modules/utility/source/
helpers_android.cc 28 RTC_CHECK(((env != NULL) && (status == JNI_OK)) ||
53 RTC_CHECK(m) << name << ", " << signature;
62 RTC_CHECK(m) << name << ", " << signature;
69 RTC_CHECK(c) << name;
76 RTC_CHECK(ret);
108 RTC_CHECK(attached_) << "AttachCurrentThread failed: " << res;
116 RTC_CHECK(res == JNI_OK) << "DetachCurrentThread failed: " << res;
117 RTC_CHECK(!GetEnv(jvm_));
jvm_android.cc 44 RTC_CHECK(localRef) << c.name;
47 RTC_CHECK(globalRef) << c.name;
64 RTC_CHECK(false) << "Unable to find class in lookup table";
73 RTC_CHECK(jvm);
89 RTC_CHECK(res == JNI_OK) << "DetachCurrentThread failed: " << res;
210 RTC_CHECK(!g_jvm);
231 RTC_CHECK(jni()) << "AttachCurrentThread() must be called on this thread.";
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 86 RTC_CHECK(captured_frame == &captured_frame_);
87 RTC_CHECK(buffer_->native_handle() == nullptr);
149 RTC_CHECK(!json_value["width"].isNull() &&
165 RTC_CHECK(!running_);
170 RTC_CHECK(thread_checker_.CalledOnValidThread());
171 RTC_CHECK(!running_);
188 RTC_CHECK(thread_checker_.CalledOnValidThread());
189 RTC_CHECK(running_);
199 RTC_CHECK(thread_checker_.CalledOnValidThread());
204 RTC_CHECK(thread_checker_.CalledOnValidThread())
    [all...]
datachannelinterface.h 123 RTC_CHECK(false) << "Unknown DataChannel state: " << state;
fakemetricsobserver.cc 65 RTC_CHECK(counters_.size() > static_cast<size_t>(type));
  /external/webrtc/webrtc/modules/audio_device/android/
ensure_initialized.cc 30 RTC_CHECK(::base::android::IsVMInitialized());
  /external/webrtc/webrtc/voice_engine/
voe_network_impl.cc 51 RTC_CHECK(_shared->statistics().Initialized());
71 RTC_CHECK(_shared->statistics().Initialized());
72 RTC_CHECK(data);
95 RTC_CHECK(_shared->statistics().Initialized());
96 RTC_CHECK(data);
  /external/webrtc/webrtc/base/
event.cc 34 RTC_CHECK(event_handle_);
59 RTC_CHECK(pthread_mutex_init(&event_mutex_, NULL) == 0);
60 RTC_CHECK(pthread_cond_init(&event_cond_, NULL) == 0);
safe_conversions.h 35 RTC_CHECK(IsValueInRangeForNumericType<Dst>(value));
41 // underflow. NaN assignment to an integral will trigger a RTC_CHECK condition.
ratetracker.cc 28 RTC_CHECK(bucket_milliseconds > 0u);
29 RTC_CHECK(bucket_count > 0u);
  /external/webrtc/webrtc/modules/audio_processing/test/
audio_file_processor.cc 77 RTC_CHECK(dump_file_) << "Could not open dump file for reading.";
94 RTC_CHECK(event_msg.has_init());
98 RTC_CHECK(event_msg.has_stream());
102 RTC_CHECK(event_msg.has_reverse_stream());
111 RTC_CHECK(msg.has_sample_rate());
112 RTC_CHECK(msg.has_num_input_channels());
113 RTC_CHECK(msg.has_num_reverse_channels());
134 RTC_CHECK(!msg.has_input_data());
160 RTC_CHECK(!msg.has_data());
  /external/webrtc/webrtc/common_audio/
window_generator.cc 42 RTC_CHECK(window != nullptr);
52 RTC_CHECK(window != nullptr);
wav_file.cc 51 RTC_CHECK(file_handle_) << "Could not open wav file for reading.";
56 RTC_CHECK(ReadWavHeader(&readable, &num_channels_, &sample_rate_, &format,
76 RTC_CHECK(read == num_samples || feof(file_handle_));
107 RTC_CHECK(file_handle_) << "Could not open wav file for writing.";
108 RTC_CHECK(CheckWavParameters(num_channels_, sample_rate_, kWavFormat,
129 RTC_CHECK(num_samples_ >= written); // detect size_t overflow
lapped_transform.cc 86 RTC_CHECK(num_in_channels_ > 0 && num_out_channels_ > 0);
89 RTC_CHECK(block_processor_);
  /external/webrtc/webrtc/common_audio/vad/
vad.cc 47 RTC_CHECK(handle_);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_bitstream_parser.cc 161 RTC_CHECK(seq_scaling_list_present_flags == 0)
208 RTC_CHECK(sps_parsed_);
227 RTC_CHECK(entropy_coding_mode_flag == 0)
317 RTC_CHECK(sps_parsed_);
318 RTC_CHECK(pps_parsed_);
467 RTC_CHECK(!((pps_.weighted_pred_flag &&
531 RTC_CHECK(ParseSpsNalu(slice, length))
535 RTC_CHECK(ParsePpsNalu(slice, length))
539 RTC_CHECK(ParseNonParameterSetNalu(slice, length, nalu_type))
549 RTC_CHECK(!slice_markers.empty())
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/red/
audio_encoder_copy_red.cc 22 RTC_CHECK(speech_encoder_) << "Speech encoder not provided.";
64 RTC_CHECK(info.redundant.empty()) << "Cannot use nested redundant encoders.";

Completed in 553 milliseconds

1 2 3 4