/frameworks/av/camera/ndk/ |
NdkCameraMetadata.cpp | 31 const ACameraMetadata* acm, uint32_t tag, ACameraMetadata_const_entry* entry) { 33 if (acm == nullptr || entry == nullptr) { 35 __FUNCTION__, acm, tag, entry); 38 return acm->getConstEntry(tag, entry); 43 const ACameraMetadata* acm, /*out*/int32_t* numTags, /*out*/const uint32_t** tags) { 45 if (acm == nullptr || numTags == nullptr || tags == nullptr) { 47 __FUNCTION__, acm, numTags, tags); 50 return acm->getTags(numTags, tags);
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
PacketLossTest.cc | 27 void ReceiverWithPacketLoss::Setup(AudioCodingModule *acm, 38 Receiver::Setup(acm, rtpStream, ss.str(), channels); 89 void SenderWithFEC::Setup(AudioCodingModule *acm, RTPStream *rtpStream, 92 Sender::Setup(acm, rtpStream, in_file_name, sample_rate, channels); 129 rtc::scoped_ptr<AudioCodingModule> acm(AudioCodingModule::Create(0)); 131 int codec_id = acm->Codec("opus", 48000, channels_); 144 sender_->Setup(acm.get(), &rtpFile, in_file_name_, sample_rate_hz_, channels_, 146 if (acm->SendCodec()) { 159 receiver_->Setup(acm.get(), &rtpFile, "packetLoss_out", channels_,
|
EncodeDecodeTest.cc | 54 void Sender::Setup(AudioCodingModule *acm, RTPStream *rtpStream, 57 int noOfCodecs = acm->NumberOfCodecs(); 79 EXPECT_EQ(0, acm->Codec(n, &sendCodec)); 86 EXPECT_EQ(0, acm->Codec(codecNo, &sendCodec)); 90 EXPECT_EQ(0, acm->RegisterSendCodec(sendCodec)); 92 EXPECT_EQ(0, acm->RegisterTransportCallback(_packetization)); 94 _acm = acm; 125 void Receiver::Setup(AudioCodingModule *acm, RTPStream *rtpStream, 129 EXPECT_EQ(0, acm->InitializeReceiver()); 131 noOfCodecs = acm->NumberOfCodecs() [all...] |
PacketLossTest.h | 23 void Setup(AudioCodingModule *acm, RTPStream *rtpStream, 40 void Setup(AudioCodingModule *acm, RTPStream *rtpStream,
|
EncodeDecodeTest.h | 50 void Setup(AudioCodingModule *acm, RTPStream *rtpStream, 73 void Setup(AudioCodingModule *acm, RTPStream *rtpStream,
|
delay_test.cc | 57 AcmSettings acm; member in struct:webrtc::__anon27811::TestSettings 134 "ACM: DTX %s, FEC %s\n" 137 config.codec.num_channels, config.acm.dtx ? "on" : "off", 138 config.acm.fec ? "on" : "off", 141 ConfigAcm(config.acm); 257 test_setting.acm.dtx = FLAGS_dtx; 258 test_setting.acm.fec = FLAGS_fec;
|
TestAllCodecs.h | 29 void RegisterReceiverACM(AudioCodingModule* acm);
|
TestStereo.h | 36 void RegisterReceiverACM(AudioCodingModule* acm);
|
Channel.h | 60 void RegisterReceiverACM(AudioCodingModule *acm);
|
iSACTest.cc | 45 int16_t SetISAConfig(ACMTestISACConfig& isacConfig, AudioCodingModule* acm, 50 auto sendCodec = acm->SendCodec(); 55 EXPECT_EQ(0, acm->RegisterSendCodec(*sendCodec)); 64 EXPECT_EQ(0, acm->RegisterSendCodec(*sendCodec));
|
TestAllCodecs.cc | 55 void TestPack::RegisterReceiverACM(AudioCodingModule* acm) { 56 receiver_acm_ = acm; 348 // Input: side - which ACM to use, 'A' or 'B' 391 // Set pointer to the ACM where to register the codec. 432 // Add 10 msec to ACM. 454 // Run received side of ACM.
|
Channel.cc | 271 void Channel::RegisterReceiverACM(AudioCodingModule* acm) { 272 _receiverACM = acm;
|
TestStereo.cc | 42 void TestPackStereo::RegisterReceiverACM(AudioCodingModule* acm) { 43 receiver_acm_ = acm; 674 // Input: side - which ACM to use, 'A' or 'B' 700 // Set pointer to the ACM where to register the codec 758 // Add 10 msec to ACM 794 // Run received side of ACM
|
/external/webrtc/webrtc/modules/audio_coding/acm2/ |
acm_send_test_oldapi.h | 60 AudioCodingModule* acm() { return acm_.get(); } function in class:webrtc::test::AcmSendTestOldApi 65 // Creates a Packet object from the last packet produced by ACM (and received
|
audio_coding_module_unittest_oldapi.cc | 238 // Check if the statistics are initialized correctly. Before any call to ACM 456 // A multi-threaded test for ACM. This base class is using the PCM16b 16 kHz 550 // Now we're not holding the crit sect when calling ACM. 571 // Now we're not holding the crit sect when calling ACM. 598 // This is a multi-threaded ACM test using iSAC. The test encodes audio 641 // Register iSAC codec in ACM, effectively unregistering the PCM16B codec 750 // Register iSAC codec in ACM, effectively unregistering the PCM16B codec 804 // Now we're not holding the crit sect when calling ACM. 806 // Insert into ACM. [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
wmm_ac.h | 37 * acm - Admission Control Mandatory 38 * In case an access category is ACM, the traffic will have 41 unsigned int acm:1; member in struct:wmm_ac_assoc_data::__anon28516
|
wmm_ac.c | 406 /* Requested accesss category must have acm */ 407 if (!wpa_s->wmm_ac_assoc_info->ac_params[req_ac].acm) { 408 wpa_printf(MSG_DEBUG, "WMM AC: AC %d is not ACM", req_ac); 452 assoc_data->ac_params[i].acm = 457 assoc_data->ac_params[WMM_AC_BE].acm, 458 assoc_data->ac_params[WMM_AC_BK].acm, 459 assoc_data->ac_params[WMM_AC_VI].acm, 460 assoc_data->ac_params[WMM_AC_VO].acm); 873 "%s: acm=%d uapsd=%d\n", 875 assoc_info->ac_params[ac].acm, [all...] |
/external/regex-re2/re2/testing/ |
regexp_generator.cc | 66 ACMRandom acm(seed); 67 acm_ = &acm;
|
/external/wpa_supplicant_8/src/ap/ |
wmm.c | 29 static inline u8 wmm_aci_aifsn(int aifsn, int acm, int aci) 33 if (acm) 302 /* TODO: check the request is for an AC with ACM set, if not, refuse
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
BaseRecognizer.as | 433 * http://portal.acm.org/citation.cfm?id=947902.947905
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.pas | [all...] |
/external/e2fsprogs/doc/ |
texinfo.tex | [all...] |
/external/e2fsprogs/lib/et/ |
texinfo.tex | [all...] |
/external/netperf/doc/ |
texinfo.tex | [all...] |
/ndk/sources/host-tools/make-3.81/config/ |
texinfo.tex | [all...] |