Searched refs:config (Results 176 - 200 of 4392) sorted by relevance

1234567891011>>

/external/chromium_org/net/quic/test_tools/
H A Dmock_quic_dispatcher.cc13 const QuicConfig& config,
17 : QuicDispatcher(config,
12 MockQuicDispatcher( const QuicConfig& config, const QuicCryptoServerConfig& crypto_config, QuicDispatcher::PacketWriterFactory* packet_writer_factory, QuicConnectionHelperInterface* helper) argument
/external/chromium_org/net/tools/quic/test_tools/
H A Dmock_quic_dispatcher.cc14 const QuicConfig& config,
18 : QuicDispatcher(config,
13 MockQuicDispatcher( const QuicConfig& config, const QuicCryptoServerConfig& crypto_config, QuicDispatcher::PacketWriterFactory* packet_writer_factory, EpollServer* eps) argument
/external/chromium_org/ppapi/api/private/
H A Dppb_image_capture_config_private.idl41 * capture config resource.
54 * @param[in] config A <code>PP_Resource</code> corresponding to an image
55 * capture config resource.
60 [in] PP_Resource config,
67 * @param[in] config A <code>PP_Resource</code> corresponding to a
73 [in] PP_Resource config,
80 * @param[in] config A <code>PP_Resource</code> corresponding to an image
81 * capture config resource.
86 [in] PP_Resource config,
93 * @param[in] config
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_image_capture_config_private_thunk.cc34 void GetPreviewSize(PP_Resource config, struct PP_Size* preview_size) { argument
36 EnterResource<PPB_ImageCaptureConfig_API> enter(config, true);
42 void SetPreviewSize(PP_Resource config, const struct PP_Size* preview_size) { argument
44 EnterResource<PPB_ImageCaptureConfig_API> enter(config, true);
50 void GetJpegSize(PP_Resource config, struct PP_Size* jpeg_size) { argument
52 EnterResource<PPB_ImageCaptureConfig_API> enter(config, true);
58 void SetJpegSize(PP_Resource config, const struct PP_Size* jpeg_size) { argument
60 EnterResource<PPB_ImageCaptureConfig_API> enter(config, true);
/external/chromium_org/remoting/codec/
H A Daudio_decoder.cc15 const protocol::SessionConfig& config) {
16 const protocol::ChannelConfig& audio_config = config.audio_config();
14 CreateAudioDecoder( const protocol::SessionConfig& config) argument
/external/chromium_org/remoting/protocol/
H A Dcontent_description.cc59 XmlElement* FormatChannelConfig(const ChannelConfig& config, argument
65 ValueToName(kTransports, config.transport));
67 if (config.transport != ChannelConfig::TRANSPORT_NONE) {
69 base::IntToString(config.version));
71 if (config.codec != ChannelConfig::CODEC_UNDEFINED) {
73 ValueToName(kCodecs, config.codec));
82 ChannelConfig* config) {
85 &config->transport)) {
90 if (config->transport != ChannelConfig::TRANSPORT_NONE) {
92 &config
81 ParseChannelConfig(const XmlElement* element, bool codec_required, ChannelConfig* config) argument
115 ContentDescription( scoped_ptr<CandidateSessionConfig> config, scoped_ptr<buzz::XmlElement> authenticator_message) argument
167 ChannelConfig config = *it; local
[all...]
/external/chromium_org/third_party/angle/tests/deqp_tests/
H A Ddeqp_tests.h24 void SetCurrentConfig(const DEQPConfig& config);
27 void RunDEQPTest(const std::string &testPath, const DEQPConfig& config);
/external/chromium_org/third_party/angle/tests/gles_conformance_tests/
H A Dgles_conformance_tests.h21 void SetCurrentConfig(const ConformanceConfig& config);
24 void RunConformanceTest(const std::string &testPath, const ConformanceConfig& config);
/external/chromium_org/third_party/codesighs/
H A DMakefile.in44 include $(DEPTH)/config/autoconf.mk
66 include $(topsrcdir)/config/config.mk
75 include $(topsrcdir)/config/rules.mk
/external/chromium_org/third_party/libevent/
H A Devent-config.h6 // event-config.h depending on your platform.
9 #include "mac/event-config.h"
11 #include "android/event-config.h"
13 #include "linux/event-config.h"
15 #include "freebsd/event-config.h"
17 #include "solaris/event-config.h"
19 #error generate event-config.h for your platform
/external/deqp/framework/platform/null/
H A DtcuNullPlatform.cpp40 glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine&) const argument
42 return new RenderContext(config);
/external/dnsmasq/bld/
H A Dpkg-wrapper6 if grep "^\#.*define.*$search" config.h 2>&1 >/dev/null || \
/external/llvm/utils/
H A Dgetsrcs.sh14 # directory. Without it, the llvm-config command is consulted to find the
25 TOPDIR=`llvm-config --src-root`
/external/ltrace/
H A Dautogen.sh39 mkdir -p config/autoconf config/m4
/external/qemu/distrib/sdl-1.2.15/
H A DMakefile21 CONFIG_MAKE := $(OBJS_DIR)/config.make
22 CONFIG_H := $(OBJS_DIR)/config-host.h
40 .PHONY: all libraries executables clean clean-config clean-objs-dir \
55 distclean: clean clean-config
66 clean-config:
/external/srec/config/en.us/
H A Dadb_pull_system_usr_srec_liveaudio.sh5 adb pull $TESTDIR/config/en.us/recog4_SHIP_liveaudio.res recog4_SHIP_liveaudio.res
/external/stlport/stlport/stl/
H A D_cprolog.h18 # include <stl/config/features.h>
24 # include <stl/config/_prolog.h>
/external/wpa_supplicant_8/wpa_supplicant/
H A DAndroid.mk9 PKG_CONFIG ?= pkg-config
17 include $(LOCAL_PATH)/android.config
81 OBJS = config.c
/external/chromium_org/chromecast/media/cma/ipc_streamer/
H A Ddecrypt_config_marshaller.cc22 const ::media::DecryptConfig& config, MediaMessage* msg) {
23 CHECK_GT(config.key_id().size(), 0);
24 CHECK_GT(config.iv().size(), 0);
25 CHECK_GT(config.subsamples().size(), 0);
27 CHECK(msg->WritePod(config.key_id().size()));
28 CHECK(msg->WriteBuffer(config.key_id().data(), config.key_id().size()));
29 CHECK(msg->WritePod(config.iv().size()));
30 CHECK(msg->WriteBuffer(config.iv().data(), config
21 Write( const ::media::DecryptConfig& config, MediaMessage* msg) argument
[all...]
H A Daudio_decoder_config_marshaller.cc21 const ::media::AudioDecoderConfig& config, MediaMessage* msg) {
22 CHECK(msg->WritePod(config.codec()));
23 CHECK(msg->WritePod(config.channel_layout()));
24 CHECK(msg->WritePod(config.samples_per_second()));
25 CHECK(msg->WritePod(config.sample_format()));
26 CHECK(msg->WritePod(config.is_encrypted()));
27 CHECK(msg->WritePod(config.extra_data_size()));
28 if (config.extra_data_size() > 0)
29 CHECK(msg->WriteBuffer(config.extra_data(), config
20 Write( const ::media::AudioDecoderConfig& config, MediaMessage* msg) argument
[all...]
/external/deqp/framework/platform/ios/
H A DtcuIOSPlatform.mm74 glu::RenderContext* ContextFactory::createContext (const glu::RenderConfig& config, const tcu::CommandLine&) const
76 RawContext* rawContext = new RawContext(config.type);
80 if (config.surfaceType == glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC)
81 return new glu::FboRenderContext(rawContext, config);
82 else if (config.surfaceType == glu::RenderConfig::SURFACETYPE_WINDOW)
83 return new ScreenContext(m_screenManager, config);
162 NSString* chooseLayerColorFormat (const glu::RenderConfig& config)
164 const bool cr = config.redBits != glu::RenderConfig::DONT_CARE;
165 const bool cg = config.greenBits != glu::RenderConfig::DONT_CARE;
166 const bool cb = config
[all...]
/external/deqp/framework/opengl/
H A DgluFboRenderContext.hpp47 FboRenderContext (RenderContext* context, const RenderConfig& config);
48 FboRenderContext (const ContextFactory& factory, const RenderConfig& config, const tcu::CommandLine& cmdLine);
59 void createFramebuffer (const RenderConfig& config);
70 deUint32 chooseColorFormat (const RenderConfig& config);
71 deUint32 chooseDepthStencilFormat (const RenderConfig& config);
H A DgluFboRenderContext.cpp51 deUint32 chooseColorFormat (const glu::RenderConfig& config) argument
70 if (config.redBits != glu::RenderConfig::DONT_CARE &&
71 config.redBits != bits[0])
74 if (config.greenBits != glu::RenderConfig::DONT_CARE &&
75 config.greenBits != bits[1])
78 if (config.blueBits != glu::RenderConfig::DONT_CARE &&
79 config.blueBits != bits[2])
82 if (config.alphaBits != glu::RenderConfig::DONT_CARE &&
83 config.alphaBits != bits[3])
92 deUint32 chooseDepthStencilFormat (const glu::RenderConfig& config) argument
123 FboRenderContext(RenderContext* context, const RenderConfig& config) argument
141 FboRenderContext(const ContextFactory& factory, const RenderConfig& config, const tcu::CommandLine& cmdLine) argument
176 createFramebuffer(const RenderConfig& config) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Decho_cancellation_impl_unittest.cc33 Config config; local
34 config.Set<DelayCorrection>(new DelayCorrection(true));
35 ap->SetExtraOptions(config);
42 config.Set<DelayCorrection>(new DelayCorrection(false));
43 ap->SetExtraOptions(config);
63 Config config; local
64 config.Set<ReportedDelay>(new ReportedDelay(false));
65 ap->SetExtraOptions(config);
72 config.Set<ReportedDelay>(new ReportedDelay(true));
73 ap->SetExtraOptions(config);
[all...]
/external/chromium_org/third_party/webrtc/test/
H A Dfake_network_pipe_unittest.cc69 FakeNetworkPipe::Config config; local
70 config.queue_length_packets = 20;
71 config.link_capacity_kbps = 80;
72 scoped_ptr<FakeNetworkPipe> pipe(new FakeNetworkPipe(config));
82 const int kPacketTimeMs = PacketTimeMs(config.link_capacity_kbps,
111 FakeNetworkPipe::Config config; local
112 config.queue_length_packets = 20;
113 config.queue_delay_ms = 100;
114 config.link_capacity_kbps = 80;
115 scoped_ptr<FakeNetworkPipe> pipe(new FakeNetworkPipe(config));
148 FakeNetworkPipe::Config config; local
171 FakeNetworkPipe::Config config; local
201 FakeNetworkPipe::Config config; local
259 FakeNetworkPipe::Config config; local
[all...]

Completed in 848 milliseconds

1234567891011>>