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

1 2 3 4 5 6 7 8 91011>>

  /external/openssh/
auth-shadow.c 68 debug3("account expiration disabled");
94 int daysleft, disabled = 0; local
111 /* Test for Trusted Mode expiry disabled */
116 disabled = 1;
122 if (disabled) {
123 debug3("password expiration disabled");
128 debug3("password expiration disabled");
  /external/skia/src/gpu/
GrFixedClip.cpp 70 const GrFixedClip& GrFixedClip::Disabled() {
71 static const GrFixedClip disabled = GrFixedClip(); local
72 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
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Macro.h 37 Macro() : predefined(false), disabled(false), type(kTypeObj) { }
41 mutable bool disabled; member in struct:pp::Macro
  /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 */
211 /* re-enable echo, assumes we disabled it before (and set the structs we
229 bool disabled; local
234 disabled = ttyecho(FALSE, fd); /* disable terminal echo */
243 if(disabled) {
244 /* if echo actually was disabled, add a newline */
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 36 public TextView disabled; field in class:AppViewHolder
51 holder.disabled = (TextView) convertView.findViewById(R.id.widget_text2);
  /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
  /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);
  /frameworks/support/design/tests/src/android/support/design/widget/
FloatingActionButtonTest.java 132 final int disabled = ContextCompat.getColor(activity, R.color.sand_disabled); local
139 .check(matches(withFabBackgroundFill(disabled)));
  /cts/hostsidetests/security/securityPatch/CVE-2017-0403/
poc.c 52 __u64 disabled : 1, /* off by default */ member in struct:perf_event_attr
  /external/guava/guava/src/com/google/common/base/
FinalizableReferenceQueue.java 245 static boolean disabled; field in class:FinalizableReferenceQueue.SystemLoader
249 if (disabled) {
  /external/libchrome/base/trace_event/
memory_dump_manager.h 207 bool disabled; member in struct:base::trace_event::MemoryDumpManager::MemoryDumpProviderInfo
  /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());
  /external/fio/
iolog.h 66 unsigned int disabled; member in struct:io_log
  /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
515 if ! disabled logging ; then
541 elif [ $action = "disable" ] && ! disabled $option ; then
899 if disabled neon && enabled neon_asm; the
    [all...]
  /external/v8/src/
flags.cc 238 bool disabled = f->type() == Flag::TYPE_BOOL && !*f->bool_variable(); local
240 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;
  /device/google/dragon/audio/hal/
cras_dsp_pipeline.c 20 * disabled will not be included). Here are the mapping between the
41 * now disabled, in the pipeline we construct there will only be two
67 * and it is not disabled). An instance also contains a pointer to a
75 * the ports skip disabled plugins and connect to the upstream
162 * we need to handle here is the previous plugin may be disabled, so
186 /* if the plugin is not disabled, it will be pointed by some instance */
193 /* Now we know the previous plugin is disabled, we need to go
270 char disabled; local
273 plugin->disable_expr, env, &disabled) == 0 &&
274 disabled == 1)
    [all...]

Completed in 662 milliseconds

1 2 3 4 5 6 7 8 91011>>