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

1234567891011>>

/frameworks/base/tools/aapt/
H A DStringPool.h99 const String8* configTypeName = NULL, const ResTable_config* config = NULL);
102 const String8* configTypeName = NULL, const ResTable_config* config = NULL);
/frameworks/opt/bitmap/sample/
H A DAndroid.mk35 LOCAL_PROGUARD_FLAG_FILES := proguard-config.pro
/frameworks/rs/driver/
H A DrsdGL.cpp86 static void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
127 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
256 // Try minding a multisample config that matches the user request
279 // The first config is guaranteed to over-satisfy the constraints
280 dc->gl.egl.config = configs[0];
303 dc->gl.egl.config = configs[i];
312 printEGLConfiguration(dc->gl.egl.display, dc->gl.egl.config);
317 dc->gl.egl.context = eglCreateContext(dc->gl.egl.display, dc->gl.egl.config,
329 dc->gl.egl.surfaceDefault = eglCreatePbufferSurface(dc->gl.egl.display, dc->gl.egl.config,
445 dc->gl.egl.surface = eglCreateWindowSurface(dc->gl.egl.display, dc->gl.egl.config,
[all...]
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp440 audio_config_t *config,
446 if (output == NULL || config == NULL || devices == NULL || latencyMs == NULL) {
452 data.write(config, sizeof(audio_config_t));
468 reply.read(config, sizeof(audio_config_t));
514 audio_config_t *config,
520 if (input == NULL || config == NULL || device == NULL) {
527 data.write(config, sizeof(audio_config_t));
543 reply.read(config, sizeof(audio_config_t));
873 virtual status_t setAudioPortConfig(const struct audio_port_config *config) argument
875 if (config
438 openOutput(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t *devices, const String8& address, uint32_t *latencyMs, audio_output_flags_t flags) argument
512 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
1091 audio_config_t config; local
1136 audio_config_t config; local
1354 struct audio_port_config config; local
[all...]
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h48 effect_config_t config; member in struct:downmix_module_s
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.h120 effect_config_t config; member in struct:EffectContext
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp142 EGLConfig config; local
146 // TODO: Currently choosing the config that includes all
158 eglChooseConfig(display(), configAttribs, &config, 1, &numConfigs); local
172 surfaces_[0] = SurfaceWindowPair(eglCreateWindowSurface(display(), config, window_.get(), NULL), NULL);
178 config,
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
H A DCubeRenderer.java100 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/compile/libbcc/include/bcc/
H A DCompiler.h43 // 1. A compiler instance can be constructed provided an "initial config."
44 // 2. A compiler can later be re-configured using config().
45 // 3. Once config() is invoked, it'll re-create TargetMachine instance (i.e.,
48 // to config().
93 enum ErrorCode config(const CompilerConfig &pConfig);
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttribute.h69 inline const LinkerConfig &config() const { return m_Config; } function in class:mcld::ELFAttribute
/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
H A DTestFramerateView.java87 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/webview/chromium/tools/buildbot/
H A Dwebview_buildbot_functions.sh147 git config target.os android
/frameworks/av/include/media/
H A DIAudioFlinger.h150 audio_config_t *config,
163 audio_config_t *config,
236 virtual status_t setAudioPortConfig(const struct audio_port_config *config) = 0;
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java247 Configuration config = am.getConfiguration();
251 config.setLocale(locale);
253 am.updateConfiguration(config);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DZenModeControllerImpl.java138 final ZenModeConfig config = mNoMan.getZenModeConfig();
139 if (config != null) {
140 return config.exitCondition;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneFallbackEventHandler.java170 Configuration config = mContext.getResources().getConfiguration();
171 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
172 || config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_YES) {
/frameworks/base/services/core/java/com/android/server/
H A DCommonTimeManagementService.java174 // Connect to the common time config service and apply the initial configuration.
315 InterfaceConfiguration config = mNetMgr.getInterfaceConfig(iface);
316 if (null == config)
319 if (config.isActive()) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java853 public String p2pConnect(WifiP2pConfig config, boolean joinExistingGroup) { argument
854 if (config == null) return null;
856 WpsInfo wps = config.wps;
857 args.add(config.deviceAddress);
882 if (config.netId == WifiP2pGroup.PERSISTENT_NET_ID) {
891 int groupOwnerIntent = config.groupOwnerIntent;
908 public boolean p2pProvisionDiscovery(WifiP2pConfig config) { argument
909 if (config == null) return false;
911 switch (config.wps.setup) {
913 return doBooleanCommand("P2P_PROV_DISC " + config
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DApnContext.java91 public ApnContext(Context context, String apnType, String logTag, NetworkConfig config, argument
98 mDependencyMet = new AtomicBoolean(config.dependencyMet);
100 priority = config.priority;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DResourcesWrapper.java228 public void updateConfiguration(Configuration config, DisplayMetrics metrics) { argument
229 super.updateConfiguration(config, metrics);
231 mResources.updateConfiguration(config, metrics);
/frameworks/base/core/jni/
H A Dandroid_opengl_EGL14.cpp473 /* EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value ) */
476 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint attribute, jintArray value_ref, jint offset) {
482 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
528 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
531 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
537 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
605 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
608 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
614 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
686 /* EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, cons
475 android_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint attribute, jintArray value_ref, jint offset) argument
530 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
607 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
688 android_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jintArray attrib_list_ref, jint offset) argument
750 android_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) argument
867 android_eglCreatePbufferFromClientBuffer(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jlong buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
930 android_eglCreatePbufferFromClientBufferInt(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
1004 android_eglCreateContext(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject share_context, jintArray attrib_list_ref, jint offset) argument
[all...]
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterfaceImplLegacy.cpp99 audio_policy_forced_cfg_t config)
110 if (config < 0 || config >= AUDIO_POLICY_FORCE_CFG_CNT) {
115 mpAudioPolicy->set_force_use(mpAudioPolicy, usage, config);
558 status_t AudioPolicyService::setAudioPortConfig(const struct audio_port_config *config __unused)
98 setForceUse(audio_policy_force_use_t usage, audio_policy_forced_cfg_t config) argument
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp61 EGLConfig config)
89 if (config == EGL_NO_CONFIG) {
90 config = RenderEngine::chooseEglConfig(display, format);
92 surface = eglCreateWindowSurface(display, config, window, NULL);
106 mConfig = config;
52 DisplayDevice( const sp<SurfaceFlinger>& flinger, DisplayType type, int32_t hwcId, int format, bool isSecure, const wp<IBinder>& displayToken, const sp<DisplaySurface>& displaySurface, const sp<IGraphicBufferProducer>& producer, EGLConfig config) argument
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsMessage.java832 public NoEmsSupportConfig(String[] config) { argument
833 mOperatorNumber = config[0];
834 mIsPrefix = "prefix".equals(config[1]);
835 mGid1 = config.length > 2 ? config[2] : null;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1136 audio_config_t config; local
1137 memset(&config, 0, sizeof(config));
1138 config.sample_rate = sampleRate;
1139 config.channel_mask = channelMask;
1140 config.format = format;
1143 size_t size = dev->get_input_buffer_size(dev, &config);
1223 // the config change is always sent from playback or record threads to avoid deadlock
1692 audio_config_t *config,
1718 //config
1690 openOutput_l(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t devices, const String8& address, audio_output_flags_t flags) argument
1772 openOutput(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t *devices, const String8& address, uint32_t *latencyMs, audio_output_flags_t flags) argument
1947 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
1971 openInput_l(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
[all...]

Completed in 691 milliseconds

1234567891011>>