HomeSort by relevance Sort by last modified time
    Searched defs:disabled (Results 1 - 25 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/av/media/libstagefright/bqhelper/include/media/stagefright/bqhelper/
FrameDropper.h 38 // Returns true if all frame drop logic should be disabled.
39 bool disabled() { return (mMinIntervalUs == -1ll); } function in struct:android::FrameDropper
  /external/skia/src/gpu/
GrFixedClip.cpp 69 const GrFixedClip& GrFixedClip::Disabled() {
70 static const GrFixedClip disabled = GrFixedClip(); local
71 return disabled;
  /external/skqp/src/gpu/
GrFixedClip.cpp 69 const GrFixedClip& GrFixedClip::Disabled() {
70 static const GrFixedClip disabled = GrFixedClip(); local
71 return disabled;
  /external/syslinux/gpxe/src/include/
console.h 27 * function has completed should set #disabled=1 initially. This
33 /** Console is disabled.
36 * methods will not be called while #disabled==1. Typically
37 * the console's initialisation functions will set #disabled=0
41 int disabled; member in struct:console_driver
  /frameworks/native/libs/binder/
IUidObserver.cpp 33 virtual void onUidGone(uid_t uid, bool disabled)
38 data.writeInt32(disabled ? 1 : 0);
50 virtual void onUidIdle(uid_t uid, bool disabled)
55 data.writeInt32(disabled ? 1 : 0);
73 bool disabled = data.readInt32() == 1; local
74 onUidGone(uid, disabled);
88 bool disabled = data.readInt32() == 1; local
89 onUidIdle(uid, disabled);
  /external/libchrome/base/trace_event/
memory_dump_provider_info.h 24 // whether it has been disabled, etc.)
96 bool disabled; member in struct:base::trace_event::MemoryDumpProviderInfo
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Macro.h 43 mutable bool disabled; member in struct:pp::Macro
  /packages/apps/Settings/src/com/android/settings/development/
AppViewHolder.java 34 public TextView disabled; field in class:AppViewHolder
47 holder.disabled = convertView.findViewById(R.id.appendix);
  /external/compiler-rt/lib/asan/
asan_activation.cc 108 AllocatorOptions disabled = asan_deactivated_flags.allocator_options; local
109 disabled.quarantine_size_mb = 0;
110 disabled.min_redzone = 16; // Redzone must be at least 16 bytes long.
111 disabled.max_redzone = 16;
112 disabled.alloc_dealloc_mismatch = false;
113 disabled.may_return_null = true;
114 ReInitializeAllocator(disabled);
  /external/curl/src/
tool_getpass.c 123 /* since echo is disabled, print a newline */
206 return FALSE; /* not disabled */
208 return TRUE; /* disabled */
210 /* re-enable echo, assumes we disabled it before (and set the structs we
227 bool disabled; local
232 disabled = ttyecho(FALSE, fd); /* disable terminal echo */
241 if(disabled) {
242 /* if echo actually was disabled, add a newline */
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_shader.h 90 uint8_t disabled; member in struct:rbug_proto_shader_info_reply
127 uint8_t disabled,
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_objects.h 67 boolean disabled; member in struct:rbug_shader
  /packages/apps/DocumentsUI/src/com/android/documentsui/
ShortcutsUpdater.java 62 // Mark any shortcut that doesn't correspond to a current root as disabled.
63 List<String> disabled = new ArrayList<>(); local
67 disabled.add(id);
72 mgr.disableShortcuts(disabled);
  /external/guava/guava-tests/test/com/google/common/base/
FinalizableReferenceQueueClassLoaderUnloadingTest.java 103 Field disabled = sepFrqSystemLoaderC.getDeclaredField("disabled"); local
104 disabled.setAccessible(true);
105 disabled.set(null, true);
215 Field disabled = sepFrqSystemLoaderC.getDeclaredField("disabled"); local
216 disabled.setAccessible(true);
217 disabled.set(null, true);
  /external/guava/guava/src/com/google/common/base/
FinalizableReferenceQueue.java 245 static boolean disabled; field in class:FinalizableReferenceQueue.SystemLoader
249 if (disabled) {
  /external/strace/
perf_event_struct.h 16 uint64_t disabled :1, member in struct:perf_event_attr
  /external/syslinux/com32/lib/sys/
ansi.h 58 int disabled; member in struct:term_info
  /external/vboot_reference/utility/
tpmc.c 90 uint8_t disabled; local
93 uint32_t result = TlclGetFlags(&disabled, &deactivated, &nvlocked);
95 printf("disabled: %d\ndeactivated: %d\nnvlocked: %d\n",
96 disabled, deactivated, nvlocked);
  /system/extras/libfec/
fec_private.h 78 bool disabled; member in struct:verity_info
  /system/extras/libfec/include/fec/
io.h 72 bool disabled; member in struct:fec_verity_metadata
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportPage.java 215 List<ImportedProject> disabled = new ArrayList<ImportedProject>(); local
226 disabled.add(project);
234 mCheckboxTableViewer.setGrayedElements(disabled.toArray());
  /cts/hostsidetests/security/securityPatch/CVE-2016-2471/
poc.c 53 __u8 disabled; /* Disable the feature */ member in struct:iw_param
  /external/libvpx/libvpx/build/make/
configure.sh 201 disabled(){ function
213 disabled "${1}" || echo " disabling ${1}"
220 # not been explicitly (force) disabled, and enables the setting controlled by
221 # the parameter when the setting is not disabled.
225 if ! disabled $var; then
239 disabled $var || log_echo " disabling $var"
399 if enabled gcc && ! disabled "$feature" && ! check_cflags "-m$opt"; then
416 if enabled gcc && ! disabled "$feature" && ! check_cflags $flags; then
532 if ! disabled logging ; then
558 elif [ $action = "disable" ] && ! disabled $option ; the
    [all...]
  /external/v8/src/
flags.cc 266 bool disabled = f->type() == Flag::TYPE_BOOL && !*f->bool_variable(); local
268 os << (disabled ? "--no" : "--") << f->name();
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 222 final Bitmap disabled = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), local
225 canvas.setBitmap(disabled);
231 return disabled;

Completed in 716 milliseconds

1 2 3 4 5 6 7 8 91011