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

<<21222324252627282930>>

  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkStatsServiceTest.java 74 import com.android.server.net.NetworkStatsService.NetworkStatsSettings.Config;
937 final Config config = new Config(bucketDuration, deleteAge, deleteAge); local
    [all...]
  /hardware/invensense/60xx/mlsdk/mllite/
dmpDefault.c 362 struct ext_slave_config config; local
364 config.key = MPU_SLAVE_CONFIG_ODR_SUSPEND;
365 config.len = sizeof(long);
366 config.apply = FALSE;
367 config.data = &odr;
373 &config);
378 config.key = MPU_SLAVE_CONFIG_ODR_RESUME;
383 &config);
388 config.key = MPU_SLAVE_CONFIG_IRQ_SUSPEND;
393 &config);
    [all...]
ml.c 1730 struct ext_slave_config config; local
1792 struct ext_slave_config config; local
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
Logger.java 868 * Logs a message of level {@code Level.CONFIG}; the message is transmitted
874 public void config(String msg) { method in class:Logger
875 log(Level.CONFIG, msg);
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
UtilsTests.java 127 Configuration config = new Configuration(); local
128 config.locale = Locale.getDefault();
129 return config;
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 250 ViewConfiguration config = ViewConfiguration.get(getContext()); local
253 float slop = config.getScaledTouchSlop() * config.getScaledTouchSlop();
  /packages/apps/Mms/src/com/android/mms/util/
ThumbnailManager.java 21 import android.graphics.Bitmap.Config;
330 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
417 private Bitmap.Config getConfig(Bitmap bitmap) {
418 Bitmap.Config config = bitmap.getConfig(); local
419 if (config == null) {
420 config = Bitmap.Config.ARGB_8888;
422 return config;
430 Bitmap newBitmap = bitmap.copy(Config.ARGB_8888, false)
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/p2p/
WifiP2pSettings.java 378 WifiP2pConfig config = new WifiP2pConfig(); local
379 config.deviceAddress = mSelectedWifiPeer.device.deviceAddress;
384 config.wps.setup = forceWps;
387 config.wps.setup = WpsInfo.PBC;
389 config.wps.setup = WpsInfo.KEYPAD;
391 config.wps.setup = WpsInfo.DISPLAY;
395 mWifiP2pManager.connect(mChannel, config,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
TosWebViewFragment.java 316 Configuration config = new Configuration(); local
317 Settings.System.getConfiguration(getActivity().getContentResolver(), config); local
318 if (config.mcc != 0) {
319 url = url.replace("%m", Integer.toString(config.mcc));
349 Configuration config = new Configuration(); local
350 Settings.System.getConfiguration(getActivity().getContentResolver(), config); local
352 if (telephony != null && config.mcc != 0) {
  /system/core/adb/
usb_linux.c 157 struct usb_config_descriptor* config; local
199 // should have config descriptor next
200 config = (struct usb_config_descriptor *)bufptr;
202 if (config->bLength != USB_DT_CONFIG_SIZE || config->bDescriptorType != USB_DT_CONFIG) {
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
dojo-1.6.1.js 174 // If this is config value is set to true, then dojo.addOnLoad callbacks will not be
253 d.config =/*===== djConfig = =====*/{
258 // FIXME: 2.0, drop djConfig support. Use dojoConfig exclusively for global config.
264 d.config[c] = cfg[c];
274 dojo.locale = d.config.locale;
    [all...]
  /frameworks/base/core/java/android/app/
ApplicationThreadNative.java 167 Configuration config = null; local
169 config = Configuration.CREATOR.createFromParcel(data);
171 scheduleRelaunchActivity(b, ri, pi, configChanges, notResumed, config);
286 Configuration config = Configuration.CREATOR.createFromParcel(data); local
292 restrictedBackupMode, persistent, config, compatInfo, services, coreSettings);
313 Configuration config = Configuration.CREATOR.createFromParcel(data); local
314 scheduleConfigurationChanged(config);
800 int configChanges, boolean notResumed, Configuration config)
809 if (config != null) {
811 config.writeToParcel(data, 0)
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 473 * @param config The parameters to configure the network.
476 public synchronized ParcelFileDescriptor establish(VpnConfig config) {
484 intent.setClassName(mPackage, config.user);
496 throw new SecurityException("Cannot find " + config.user);
499 throw new SecurityException(config.user + " does not require " + BIND_VPN_SERVICE);
502 throw new SecurityException("Cannot find " + config.user);
507 // Save the old config in case we need to go back.
516 ParcelFileDescriptor tun = ParcelFileDescriptor.adoptFd(jniCreate(config.mtu));
523 for (LinkAddress address : config.addresses) {
532 throw new IllegalStateException("Cannot bind " + config.user)
932 VpnConfig config = new VpnConfig(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 768 ConfigState config = obtainRestoreConfig(); local
771 config.mAlpha = mAlpha;
773 config.mAlpha = -1;
777 System.arraycopy(mMatrixValues, 0, config.mMatrix, 0, 16);
779 config.mMatrix[0] = Float.NEGATIVE_INFINITY;
782 mRestoreStack.add(config);
788 ConfigState config = mRestoreStack.remove(mRestoreStack.size() - 1); local
789 config.restore(this);
790 freeRestoreConfig(config);
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 219 WifiConfiguration config = mAccessPoint.getConfig(); local
220 if (config.getIpAssignment() == IpAssignment.STATIC) {
224 StaticIpConfiguration staticConfig = config.getStaticIpConfiguration();
234 if (config.getProxySettings() == ProxySettings.STATIC) {
237 } else if (config.getProxySettings() == ProxySettings.PAC) {
373 WifiConfiguration config = new WifiConfiguration(); local
376 config.SSID = AccessPoint.convertToQuotedString(
379 config.hiddenSSID = true;
381 config.SSID = AccessPoint.convertToQuotedString(
384 config.networkId = mAccessPoint.networkId
792 WifiConfiguration config = null; local
844 WifiConfiguration config = null; local
    [all...]
  /bionic/libc/kernel/uapi/drm/
exynos_drm.h 190 struct drm_exynos_ipp_config config[EXYNOS_DRM_OPS_MAX]; member in struct:drm_exynos_ipp_property
  /build/core/
config.mk 100 -include cts/build/config.mk
197 # also allow the board config to provide additional directories since
211 # Clean up/verify variables defined by the board config file.
215 $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk))
220 define select-android-config-h
236 # host config stuff being done first
261 # are defined by the board config, we use them. Else, we construct
288 # build a list out of the TARGET_CPU_ABIs specified by the config.
568 include $(BUILD_SYSTEM)/clang/config.mk
  /cts/tests/tests/content/src/android/content/res/cts/
ResourcesTest.java 117 private Resources getResources(final Configuration config, final int mcc, final int mnc,
126 config.mcc = mcc;
127 config.mnc = mnc;
128 config.touchscreen = touchscreen;
129 config.keyboard = keyboard;
130 config.keyboardHidden = keysHidden;
131 config.navigation = navigation;
134 return new Resources(assmgr, metrics, config);
458 final Configuration config = new Configuration(); local
459 config.updateFrom(mResources.getConfiguration())
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
AllocationTest.java 782 StreamConfigurationMap config = local
784 int[] availableOutputFormats = config.getOutputFormats();
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/testcases/
Camera2MultiViewTestCase.java 139 Configuration config = activity.getResources().getConfiguration(); local
160 config.orientation == Configuration.ORIENTATION_LANDSCAPE) ||
162 config.orientation == Configuration.ORIENTATION_PORTRAIT))) {
  /cts/tests/tests/opengl/src/android/opengl/cts/
FramebufferTest.java 143 * Core EGL state (display, context, config).
205 EGLConfig config = getConfig(flags, 3); local
206 if (config != null) {
211 EGLContext context = EGL14.eglCreateContext(mEGLDisplay, config, sharedContext,
215 //Log.d(TAG, "Got GLES 3 config");
216 mEGLConfig = config;
224 EGLConfig config = getConfig(flags, 2); local
225 if (config == null) {
232 EGLContext context = EGL14.eglCreateContext(mEGLDisplay, config, sharedContext,
235 mEGLConfig = config;
    [all...]
  /device/generic/goldfish/opengl/system/egl/
egl.cpp 133 EGLContext_t::EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx) :
135 config(config),
171 EGLConfig config; member in struct:egl_surface_t
174 egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
208 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType)
209 : dpy(dpy), config(config), surfaceType(surfaceType), rcSurface(0)
230 EGLDisplay dpy, EGLConfig config, EGLint surfType,
240 EGLDisplay dpy, EGLConfig config, EGLint surfType
    [all...]
  /device/htc/flounder/audio/visualizer/
nv_offload_visualizer.c 64 effect_config_t config; member in struct:effect_context_s
469 int set_config(effect_context_t *context, effect_config_t *config)
471 if (config->inputCfg.samplingRate != config->outputCfg.samplingRate) return -EINVAL;
472 if (config->inputCfg.channels != config->outputCfg.channels) return -EINVAL;
473 if (config->inputCfg.format != config->outputCfg.format) return -EINVAL;
474 if (config->inputCfg.channels != AUDIO_CHANNEL_OUT_STEREO) return -EINVAL;
475 if (config->outputCfg.accessMode != EFFECT_BUFFER_ACCESS_WRITE &
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 442 cam_pp_offline_src_config_t config; local
443 memset(&config, 0, sizeof(cam_pp_offline_src_config_t));
444 config.num_of_bufs = 1;
445 main_stream->getFormat(config.input_fmt);
446 main_stream->getFrameDimension(config.input_dim);
447 main_stream->getFrameOffset(config.input_buf_planes.plane_info);
449 int32_t rc = pme->registerFaceImage(main_frame->buffer, &config, faceId);
    [all...]
  /device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg.h 307 OMX_BOOL config; member in struct:mm_jpeg_job_session

Completed in 876 milliseconds

<<21222324252627282930>>