HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 676 - 700 of 3008) sorted by null

<<21222324252627282930>>

  /build/soong/android/
config.go 35 const configFileName = "soong.config"
39 // config file. These will be included in the config struct.
50 // A Config object represents the entire build configuration for Android.
51 type Config struct {
52 *config
62 type config struct { type
87 config *config
96 func loadConfig(config *config) error
    [all...]
  /cts/hostsidetests/security/securityPatch/CVE-2017-0403/
poc.c 42 __u64 config; member in struct:perf_event_attr
98 __u64 config1; /* extension of config */
143 attr.config = 1;
156 attr.config = 5;
  /cts/tests/camera/src/android/hardware/camera2/cts/
BurstCaptureTest.java 96 StreamConfigurationMap config = mStaticInfo.getCharacteristics().get( local
99 config.getOutputMinFrameDuration(ImageFormat.YUV_420_888, stillSize);
  /cts/tests/tests/media/libmediandkjni/
native_media_encoder_jni.cpp 56 Status prepare(std::unique_ptr<RunConfig> config, std::shared_ptr<ANativeWindow> anw = nullptr);
115 AMediaFormat *config = mRunConfig->format(); local
116 ALOGI("Encoder format: %s", AMediaFormat_toString(config));
119 AMediaFormat_getString(config, AMEDIAFORMAT_KEY_MIME, &mime);
125 mEnc.get(), config, NULL, NULL /* crypto */, AMEDIACODEC_CONFIGURE_FLAG_ENCODE);
266 std::shared_ptr<AMediaFormat> config(AMediaFormat_new(), deleter_AMediaFormat);
268 AMediaFormat_setString(config.get(), AMEDIAFORMAT_KEY_MIME, mime.c_str());
269 AMediaFormat_setInt32(config.get(), AMEDIAFORMAT_KEY_WIDTH, w);
270 AMediaFormat_setInt32(config.get(), AMEDIAFORMAT_KEY_HEIGHT, h);
271 AMediaFormat_setFloat(config.get(), AMEDIAFORMAT_KEY_FRAME_RATE, framerate)
319 std::shared_ptr<AMediaFormat> config = createMediaFormat( local
    [all...]
  /cts/tests/tests/mediastress/preconditions/app/src/android/mediastress/cts/preconditions/app/
MediaPreparerAppTest.java 85 DynamicConfigDeviceSide config = new DynamicConfigDeviceSide(MODULE_NAME); local
86 for (String key : config.keySet()) {
89 for (MediaFormat format : stringsToFormats(config.getValues(key))) {
94 // audio format, or invalid format created by unrelated dynamic config entry
102 for (MediaFormat format : stringsToFormats(config.getValues(key))) {
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaPlayerStressTest.java 129 DynamicConfigDeviceSide config = new DynamicConfigDeviceSide(MODULE_NAME); local
132 List<String> mediaFormatStrings = config.getValues(key);
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/util/
DigitalWatchFaceUtil.java 99 * Callback interface to perform an action with the current config {@link DataMap} for
104 * Callback invoked with the current config {@link DataMap} for
107 void onConfigDataMapFetched(DataMap config);
115 * Asynchronously fetches the current config {@link DataMap} for {@link DigitalWatchFaceService}
118 * If the current config {@link DataItem} doesn't exist, it isn't created and the callback
141 * Overwrites (or sets, if not present) the keys in the current config {@link DataItem} with
142 * the ones appearing in the given {@link DataMap}. If the config DataItem doesn't exist,
145 * It is allowed that only some of the keys used in the config DataItem appear in
165 * Overwrites the current config {@link DataItem}'s {@link DataMap} with {@code newConfig}.
166 * If the config DataItem doesn't exist, it's created
198 DataMap config = dataMapItem.getDataMap(); local
    [all...]
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/util/
DigitalWatchFaceUtil.java 99 * Callback interface to perform an action with the current config {@link DataMap} for
104 * Callback invoked with the current config {@link DataMap} for
107 void onConfigDataMapFetched(DataMap config);
115 * Asynchronously fetches the current config {@link DataMap} for {@link DigitalWatchFaceService}
118 * If the current config {@link DataItem} doesn't exist, it isn't created and the callback
141 * Overwrites (or sets, if not present) the keys in the current config {@link DataItem} with
142 * the ones appearing in the given {@link DataMap}. If the config DataItem doesn't exist,
145 * It is allowed that only some of the keys used in the config DataItem appear in
165 * Overwrites the current config {@link DataItem}'s {@link DataMap} with {@code newConfig}.
166 * If the config DataItem doesn't exist, it's created
198 DataMap config = dataMapItem.getDataMap(); local
    [all...]
  /development/ndk/platforms/android-21/include/linux/
atmlec.h 85 struct atmlec_config_msg config; member in union:atmlec_msg::__anon1704
mic_common.h 31 __le64 config[0]; member in struct:mic_device_desc
sdla.h 72 short config; member in struct:sdla_conf
94 short config; member in struct:sdla_dlci_conf
  /development/ndk/platforms/android-21/include/linux/netfilter_bridge/
ebt_stp.h 60 struct ebt_stp_config_info config; member in struct:ebt_stp_info
  /device/asus/fugu/libaudio/
AudioOutput.cpp 199 struct pcm_config config; local
208 memset(&config, 0, sizeof(config));
209 config.channels = mChannelCnt;
210 config.rate = mFramesPerSec;
211 config.period_size = mFramesPerChunk;
212 config.period_count = mBufferChunks;
213 config.format = mALSAFormat;
220 config.start_threshold = 1;
224 mALSACardID, dev_id, config.rate, config.channels, config.period_size, config.format)
    [all...]
  /device/generic/goldfish-opengl/system/egl/
eglDisplay.cpp 213 EGLConfig config = (EGLConfig)i; local
216 if (getConfigNativePixelFormat(config, &format)) {
217 setConfigAttrib(config, EGL_NATIVE_VISUAL_ID, format);
419 /* To get the value of attribute <a> of config <c> use the following formula:
422 EGLBoolean eglDisplay::getAttribValue(EGLConfig config, EGLint attribIdx, EGLint * value)
429 *value = *(m_configs + (intptr_t)config*m_numConfigAttribs + attribIdx);
436 EGLBoolean eglDisplay::getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value)
457 EGLBoolean ret = getAttribValue(config, m_attribs.valueFor(attrib), value);
462 void eglDisplay::dumpConfig(EGLConfig config)
465 DBG("^^^^^^^^^^ dumpConfig %d ^^^^^^^^^^^^^^^^^^", (int)config);
    [all...]
  /device/google/contexthub/util/nanotool/
nanomessage.h 191 } __attribute__((packed)) config = {}; member in class:android::ConfigureSensorRequest
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraChannel.cpp 218 * FUNCTION : config
228 int32_t QCameraChannel::config() function in class:qcamera::QCameraChannel
701 * @config: advance capture config
708 cam_capture_frame_config_t *config)
713 1, config);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.h 33 typedef int (*mbcodec_init)(const void *config);
35 const void *config,
40 const void *config);
42 const void *config,
45 const void *config,
49 const void *config);
51 const void *config);
55 const void *config; member in struct:__anon5425
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.h 33 typedef int (*mbcodec_init)(const void *config);
35 const void *config,
40 const void *config);
42 const void *config,
45 const void *config,
49 const void *config);
51 const void *config);
55 const void *config; member in struct:__anon5758
  /external/aac/libMpegTPEnc/src/
tpenc_asc.cpp 120 PCE_CONFIGURATION pce_configuration; /*!< Program config element description. */
163 * \brief Get program config element description for existing channel mode.
229 const PCE_CONFIGURATION* config = NULL; local
238 if ((config=getPceEntry(channelMode))==NULL) {
243 pEl_list = &config->el_list[0];
249 FDKwriteBits(hBs, config->num_front_channel_elements, 4); /* Front channel Elements */
250 FDKwriteBits(hBs, config->num_side_channel_elements , 4); /* No Side Channel Elements */
251 FDKwriteBits(hBs, config->num_back_channel_elements , 4); /* No Back channel Elements */
252 FDKwriteBits(hBs, config->num_lfe_channel_elements , 2); /* No Lfe channel elements */
268 for(i=0; i<config->num_front_channel_elements; i++)
310 const PCE_CONFIGURATION* config = NULL; local
    [all...]
tpenc_lib.cpp 117 CODER_CONFIG config; member in struct:TRANSPORTENC
212 /* matrixMixdownCoefficient can only be written if 5.0 and 5.1 config present. */
250 FDKmemcpy(&hTpEnc->config, cconfig, sizeof(CODER_CONFIG));
264 if ( (hTpEnc->config.aot != AOT_AAC_LC)
265 ||(hTpEnc->config.samplesPerFrame != 1024))
270 hTpEnc->writer.adif.samplingRate = hTpEnc->config.samplingRate;
271 hTpEnc->writer.adif.bitRate = hTpEnc->config.bitRate;
272 hTpEnc->writer.adif.profile = ((int)hTpEnc->config.aot) - 1;
273 hTpEnc->writer.adif.cm = hTpEnc->config.channelMode;
280 if ( ( hTpEnc->config.aot != AOT_AAC_LC
    [all...]
  /external/autotest/client/common_lib/
global_config.py 1 """A singleton class for accessing global config values
6 # The config values can be stored in 3 config files:
10 # When the code is running in Moblab, config values in moblab config override
11 # values in global config, and config values in shadow config override values
12 # in both moblab and global config.
14 # Config values in shadow config will override values in global config
91 def config(self): member in class:global_config_class
106 def config(self, value): member in class:global_config_class
    [all...]
  /external/autotest/site_utils/
lxc.py 47 config = global_config.global_config variable
50 BASE = config.get_config_value('AUTOSERV', 'container_base_name')
67 SSP_ENABLED = config.get_config_value('AUTOSERV', 'enable_ssp_container',
70 CONTAINER_BASE_FOLDER_URL = config.get_config_value('AUTOSERV',
75 DEFAULT_CONTAINER_PATH = config.get_config_value('AUTOSERV', 'container_path')
476 attribute lxc.rootfs from the config file of the container, e.g.,
502 'in the container config file is %s' %
619 config_file = os.path.join(self.container_path, self.name, 'config')
700 global config.
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
CaliperConfig.java 17 package com.google.caliper.config;
48 * Represents caliper configuration. By default, {@code ~/.caliper/config.properties} and
49 * {@code global-config.properties}.
  /external/deqp/executor/
xeTestLogWriter.cpp 380 const ri::EglConfig& config = static_cast<const ri::EglConfig&>(item); local
382 << Writer::Attribute("BufferSize", de::toString(config.bufferSize))
383 << Writer::Attribute("RedSize", de::toString(config.redSize))
384 << Writer::Attribute("GreenSize", de::toString(config.greenSize))
385 << Writer::Attribute("BlueSize", de::toString(config.blueSize))
386 << Writer::Attribute("LuminanceSize", de::toString(config.luminanceSize))
387 << Writer::Attribute("AlphaSize", de::toString(config.alphaSize))
388 << Writer::Attribute("AlphaMaskSize", de::toString(config.alphaMaskSize))
389 << Writer::Attribute("BindToTextureRGB", getBoolName(config.bindToTextureRGB))
390 << Writer::Attribute("BindToTextureRGBA", getBoolName(config.bindToTextureRGBA)
    [all...]
  /external/deqp/modules/egl/
teglNegativePartialUpdateTests.cpp 275 const EGLConfig config = getEGLConfig(egl, m_eglDisplay, SURFACETYPE_PBUFFER, false); local
282 const eglu::UniqueSurface dummyPbuffer (egl, m_eglDisplay, egl.createPbufferSurface(m_eglDisplay, config, attribList));
499 const EGLConfig config = getEGLConfig(egl, m_eglDisplay, SURFACETYPE_PBUFFER, false); local
506 const eglu::UniqueSurface dummyPbuffer (egl, m_eglDisplay, egl.createPbufferSurface(m_eglDisplay, config, attribList));

Completed in 648 milliseconds

<<21222324252627282930>>