HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 1001 - 1025 of 2436) sorted by null

<<41424344454647484950>>

  /external/webp/include/webp/
encode.h 168 // must have succeeded before using the 'config' object.
170 static WEBP_INLINE int WebPConfigInit(WebPConfig* config) {
171 return WebPConfigInitInternal(config, WEBP_PRESET_DEFAULT, 75.f,
179 static WEBP_INLINE int WebPConfigPreset(WebPConfig* config,
181 return WebPConfigInitInternal(config, preset, quality,
189 // This function will overwrite several fields from config: 'method', 'quality'
191 WEBP_EXTERN(int) WebPConfigLosslessPreset(WebPConfig* config, int level);
193 // Returns true if 'config' is non-NULL and all configuration parameters are
195 WEBP_EXTERN(int) WebPValidateConfig(const WebPConfig* config); variable
509 // Main encoding call, after config and picture have been initialized
    [all...]
  /external/webp/src/webp/
encode.h 168 // must have succeeded before using the 'config' object.
170 static WEBP_INLINE int WebPConfigInit(WebPConfig* config) {
171 return WebPConfigInitInternal(config, WEBP_PRESET_DEFAULT, 75.f,
179 static WEBP_INLINE int WebPConfigPreset(WebPConfig* config,
181 return WebPConfigInitInternal(config, preset, quality,
189 // This function will overwrite several fields from config: 'method', 'quality'
191 WEBP_EXTERN(int) WebPConfigLosslessPreset(WebPConfig* config, int level);
193 // Returns true if 'config' is non-NULL and all configuration parameters are
195 WEBP_EXTERN(int) WebPValidateConfig(const WebPConfig* config); variable
509 // Main encoding call, after config and picture have been initialized
    [all...]
  /external/webrtc/talk/app/webrtc/
statscollector_unittest.cc 584 InternalDataChannelInit config; local
585 config.id = id;
588 &data_channel_provider_, cricket::DCT_SCTP, label, config));
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2_unittest.cc 96 void VerifySendStreamHasRtxTypes(const webrtc::VideoSendStream::Config& config,
99 it = rtx_types.find(config.encoder_settings.payload_type);
101 it->second == config.rtp.rtx.payload_type);
103 if (config.rtp.fec.red_rtx_payload_type != -1) {
104 it = rtx_types.find(config.rtp.fec.red_payload_type);
106 it->second == config.rtp.fec.red_rtx_payload_type);
120 call_(webrtc::Call::Create(webrtc::Call::Config())),
420 FakeCall* fake_call = new FakeCall(webrtc::Call::Config());
480 FakeCall* fake_call = new FakeCall(webrtc::Call::Config());
1951 webrtc::VideoSendStream::Config config = stream->GetConfig(); local
1970 webrtc::VideoSendStream::Config config = stream->GetConfig(); local
2009 webrtc::VideoSendStream::Config config = stream->GetConfig(); local
2245 webrtc::VideoReceiveStream::Config config = stream->GetConfig(); local
2282 webrtc::VideoReceiveStream::Config config = stream->GetConfig(); local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap.c 132 struct eap_peer_config *config = eap_get_config(sm); local
136 if (config == NULL || config->eap_methods == NULL)
139 m = config->eap_methods;
335 struct eap_peer_config *config = eap_get_config(sm); local
343 if (sm->reqMethod == EAP_TYPE_TLS && config &&
344 (config->pending_req_pin ||
345 config->pending_req_passphrase)) {
376 struct eap_peer_config *config = eap_get_config(sm); local
380 if (!config)
694 struct eap_peer_config *config = eap_get_config(sm); local
952 struct eap_peer_config *config = eap_get_config(sm); local
1434 struct eap_peer_config *config = eap_get_config(sm); local
2188 struct eap_peer_config *config; local
2367 struct eap_peer_config *config = eap_get_config(sm); local
2513 struct eap_peer_config *config = eap_get_config(sm); local
2550 struct eap_peer_config *config = eap_get_config(sm); local
2577 struct eap_peer_config *config = eap_get_config(sm); local
2605 struct eap_peer_config *config = eap_get_config(sm); local
2621 struct eap_peer_config *config = eap_get_config(sm); local
2639 struct eap_peer_config *config = eap_get_config(sm); local
2656 struct eap_peer_config *config = eap_get_config(sm); local
2670 struct eap_peer_config *config = eap_get_config(sm); local
2679 struct eap_peer_config *config = eap_get_config(sm); local
    [all...]
eap_aka.c 91 struct eap_peer_config *config = eap_get_config(sm); local
104 if (config && config->anonymous_identity) {
105 data->pseudonym = os_malloc(config->anonymous_identity_len);
107 os_memcpy(data->pseudonym, config->anonymous_identity,
108 config->anonymous_identity_len);
109 data->pseudonym_len = config->anonymous_identity_len;
    [all...]
eap_fast.c 149 struct eap_peer_config *config = eap_get_config(sm); local
151 if (config == NULL)
160 if (config->phase1)
161 eap_fast_parse_phase1(data, config->phase1);
163 if (eap_peer_select_phase2_methods(config, "auth=",
173 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_FAST)) {
198 if (!config->pac_file) {
205 eap_fast_load_pac_bin(sm, &data->pac, config->pac_file) < 0) {
212 eap_fast_load_pac(sm, &data->pac, config->pac_file) < 0) {
424 struct eap_peer_config *config = eap_get_config(sm) local
1033 struct eap_peer_config *config = eap_get_config(sm); local
1572 struct eap_peer_config *config = eap_get_config(sm); local
    [all...]
eap_ttls.c 74 struct eap_peer_config *config = eap_get_config(sm); local
90 if (config && config->phase2) {
93 while ((token = cstr_token(config->phase2, " \t", &last))) {
132 if (os_strstr(config->phase2, "autheap=")) {
147 if (eap_peer_select_phase2_methods(config, "autheap=",
159 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_TTLS)) {
439 struct eap_peer_config *config = eap_get_config(sm); local
460 (config->pending_req_identity || config->pending_req_password |
1228 struct eap_peer_config *config = eap_get_config(sm); local
1315 struct eap_peer_config *config = eap_get_config(sm); local
1457 struct eap_peer_config *config = eap_get_config(sm); local
    [all...]
tncc.c 1072 char *config, *end, *pos, *line_end; local
1078 config = os_readfile(TNC_CONFIG_FILE, &config_len);
1079 if (config == NULL) {
1085 end = config + config_len;
1086 for (pos = config; pos < end; pos = line_end + 1) {
1098 os_free(config);
1111 os_free(config);
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.h 295 effect_config_t config; member in struct:reverb_module_s
  /frameworks/av/media/libmedia/
IAudioPolicyService.cpp 128 virtual status_t setForceUse(audio_policy_force_use_t usage, audio_policy_forced_cfg_t config)
133 data.writeInt32(static_cast <uint32_t>(config));
631 virtual status_t setAudioPortConfig(const struct audio_port_config *config)
633 if (config == NULL) {
638 data.write(config, sizeof(struct audio_port_config));
852 audio_policy_forced_cfg_t config = local
1256 struct audio_port_config config; local
    [all...]
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 629 uint8_t config = (toc >> 3) & 0x1f; local
641 uint32_t frameSizeUs = frameSizesUs[config];
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMXNodeInstance.cpp 1536 GraphicBufferSource::TimeLapseConfig config; local
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 278 EGLConfig config; local
285 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
286 surface = eglCreateWindowSurface(display, config, s.get(), NULL);
287 context = eglCreateContext(display, config, NULL, NULL);
    [all...]
  /frameworks/base/core/java/android/app/
ResourcesManager.java 172 @NonNull DisplayMetrics dm, @NonNull Configuration config) {
173 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
174 config.densityDpi = dm.densityDpi;
175 config.screenWidthDp = (int) (dm.widthPixels / dm.density);
176 config.screenHeightDp = (int) (dm.heightPixels / dm.density);
177 int sl = Configuration.resetScreenLayout(config.screenLayout);
179 config.orientation = Configuration.ORIENTATION_LANDSCAPE;
180 config.screenLayout = Configuration.reduceScreenLayout(sl,
181 config.screenWidthDp, config.screenHeightDp)
289 Configuration config; local
317 final Configuration config = generateConfig(key, dm); local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyMetadataMapper.java 1024 StreamConfiguration config = local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/params/
StreamConfigurationMap.java 137 for (StreamConfiguration config : mConfigurations) {
138 int fmt = config.getFormat();
140 if (config.isOutput()) {
146 configurationDuration.getWidth() == config.getSize().getWidth() &&
147 configurationDuration.getHeight() == config.getSize().getHeight()) {
162 for (StreamConfiguration config : mDepthConfigurations) {
163 if (!config.isOutput()) {
168 mDepthOutputFormats.put(config.getFormat(),
169 mDepthOutputFormats.get(config.getFormat()) + 1);
179 for (HighSpeedVideoConfiguration config : mHighSpeedVideoConfigurations)
    [all...]
  /frameworks/base/core/java/android/hardware/radio/
RadioManager.java 951 FmBandConfig config = new FmBandConfig(mDescriptor.getRegion(), local
1117 AmBandConfig config = new AmBandConfig(mDescriptor.getRegion(), local
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
ConnectionUtil.java 537 WifiConfiguration config = new WifiConfiguration(); local
538 config.SSID = knownSSID;
539 config.allowedKeyManagement.set(KeyMgmt.NONE);
540 return connectToWifiWithConfiguration(config);
545 * @param config
548 public boolean connectToWifiWithConfiguration(WifiConfiguration config) {
550 String ssid = config.SSID;
551 config.SSID = convertToQuotedString(ssid);
575 mWifiManager.connect(config, new WifiManager.ActionListener() {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiTracker.java 308 for (WifiConfiguration config : configs) {
309 if (mLastInfo != null && networkId == config.networkId &&
310 !(config.selfAdded && config.numAssociation == 0)) {
311 return config;
341 for (WifiConfiguration config : configs) {
342 if (config.selfAdded && config.numAssociation == 0) {
345 AccessPoint accessPoint = getCachedOrCreate(config, cachedAccessPoints);
347 if (config.isPasspoint() == false)
400 WifiConfiguration config = mWifiManager.getMatchingWifiConfig(result); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsActivity.java 368 RecentsConfiguration config = Recents.getConfiguration(); local
369 RecentsActivityLaunchState launchState = config.getLaunchState();
451 // Notify of the config change
466 RecentsConfiguration config = Recents.getConfiguration(); local
467 RecentsActivityLaunchState launchState = config.getLaunchState();
500 // through SystemUI, we need to reset the config launch flags to ensure that we do not
502 RecentsConfiguration config = Recents.getConfiguration(); local
503 RecentsActivityLaunchState launchState = config.getLaunchState();
    [all...]
RecentsImpl.java 107 RecentsConfiguration config = Recents.getConfiguration(); local
108 if (config.svelteLevel == RecentsConfiguration.SVELTE_NONE) {
309 RecentsConfiguration config = Recents.getConfiguration(); local
310 RecentsActivityLaunchState launchState = config.getLaunchState();
636 mTaskBarHeight, Bitmap.Config.ARGB_8888);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
RecentsTaskLoader.java 161 RecentsConfiguration config = Recents.getConfiguration(); local
196 if (config.svelteLevel < RecentsConfiguration.SVELTE_DISABLE_LOADING) {
212 if (config.svelteLevel < RecentsConfiguration.SVELTE_LIMIT_CACHE) {
303 Bitmap icon = Bitmap.createBitmap(1, 1, Bitmap.Config.ALPHA_8);
305 mDefaultThumbnail = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888);
408 RecentsConfiguration config = Recents.getConfiguration(); local
413 if (config.svelteLevel == RecentsConfiguration.SVELTE_NONE) {
416 } else if (config.svelteLevel == RecentsConfiguration.SVELTE_LIMIT_CACHE) {
418 } else if (config.svelteLevel >= RecentsConfiguration.SVELTE_DISABLE_CACHE) {
555 RecentsConfiguration config = Recents.getConfiguration() local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/
RecentsTvActivity.java 190 RecentsConfiguration config = Recents.getConfiguration(); local
191 RecentsActivityLaunchState launchState = config.getLaunchState();
368 RecentsConfiguration config = Recents.getConfiguration(); local
369 RecentsActivityLaunchState launchState = config.getLaunchState();
443 // through SystemUI, we need to reset the config launch flags to ensure that we do not
445 RecentsConfiguration config = Recents.getConfiguration(); local
446 RecentsActivityLaunchState launchState = config.getLaunchState();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackAnimationHelper.java 123 RecentsConfiguration config = Recents.getConfiguration(); local
124 RecentsActivityLaunchState launchState = config.getLaunchState();
196 RecentsConfiguration config = Recents.getConfiguration(); local
197 RecentsActivityLaunchState launchState = config.getLaunchState();

Completed in 5460 milliseconds

<<41424344454647484950>>