/external/openssh/ |
H A D | 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/compiler-rt/lib/asan/ |
H A D | asan_activation.cc | 107 AllocatorOptions disabled = asan_deactivated_flags.allocator_options; local 108 disabled.quarantine_size_mb = 0; 109 disabled.min_redzone = 16; // Redzone must be at least 16 bytes long. 110 disabled.max_redzone = 16; 111 disabled.alloc_dealloc_mismatch = false; 112 disabled.may_return_null = true; 113 ReInitializeAllocator(disabled);
|
/external/curl/src/ |
H A D | 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 */
|
/external/guava/guava/src/com/google/common/base/ |
H A D | FinalizableReferenceQueue.java | 245 static boolean disabled; field in class:FinalizableReferenceQueue.SystemLoader 249 if (disabled) {
|
/external/mesa3d/src/gallium/auxiliary/rbug/ |
H A D | rbug_shader.h | 90 uint8_t disabled; member in struct:rbug_proto_shader_info_reply 127 uint8_t disabled,
|
H A D | rbug_shader.c | 256 uint8_t disabled, 268 LEN(1); /* disabled */ 282 WRITE(1, uint8_t, disabled); /* disabled */ 465 READ(1, uint8_t, disabled); /* disabled */ 250 rbug_send_shader_info_reply(struct rbug_connection *__con, uint32_t serial, uint32_t *original, uint32_t original_len, uint32_t *replaced, uint32_t replaced_len, uint8_t disabled, uint32_t *__serial) argument
|
/external/mesa3d/src/gallium/drivers/rbug/ |
H A D | rbug_objects.h | 67 boolean disabled; member in struct:rbug_shader
|
/external/libchrome/base/trace_event/ |
H A D | memory_dump_manager.h | 197 bool disabled; member in struct:base::trace_event::MemoryDumpManager::MemoryDumpProviderInfo
|
/external/libvpx/libvpx/build/make/ |
H A D | configure.sh | 200 disabled(){ function 205 # not been explicitly (force) disabled, and enables the setting controlled by 206 # the parameter when the setting is not disabled. 210 if ! disabled $var; then 224 disabled $var || log_echo " disabling $var" 384 if enabled gcc && ! disabled "$feature" && ! check_cflags "-m$opt"; then 500 if ! disabled logging ; then 526 elif [ $action = "disable" ] && ! disabled $option ; then 832 if disabled neon && enabled neon_asm; then 1164 enabled optimizations && disabled gpro [all...] |
/external/proguard/src/proguard/optimize/ |
H A D | Optimizer.java | 1006 System.out.println(" Number of finalized classes: " + classMarkingFinalCount + disabled(classMarkingFinal)); 1007 System.out.println(" Number of unboxed enum classes: " + classUnboxingEnumCount + disabled(classUnboxingEnum)); 1008 System.out.println(" Number of vertically merged classes: " + classMergingVerticalCount + disabled(classMergingVertical)); 1009 System.out.println(" Number of horizontally merged classes: " + classMergingHorizontalCount + disabled(classMergingHorizontal)); 1010 System.out.println(" Number of removed write-only fields: " + fieldRemovalWriteonlyCount + disabled(fieldRemovalWriteonly)); 1011 System.out.println(" Number of privatized fields: " + fieldMarkingPrivateCount + disabled(fieldMarkingPrivate)); 1012 System.out.println(" Number of inlined constant fields: " + fieldPropagationValueCount + disabled(fieldPropagationValue)); 1013 System.out.println(" Number of privatized methods: " + methodMarkingPrivateCount + disabled(methodMarkingPrivate)); 1014 System.out.println(" Number of staticized methods: " + methodMarkingStaticCount + disabled(methodMarkingStatic)); 1015 System.out.println(" Number of finalized methods: " + methodMarkingFinalCount + disabled(methodMarkingFina 1071 private String disabled(boolean flag) method in class:Optimizer 1081 private String disabled(boolean flag1, boolean flag2) method in class:Optimizer [all...] |
/external/vboot_reference/utility/ |
H A D | 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);
|
/external/fio/ |
H A D | iolog.h | 66 unsigned int disabled; member in struct:io_log
|
/external/skia/src/gpu/ |
H A D | GrStencil.h | 255 bool disabled = GR_STENCIL_SETTINGS_IS_DISABLED( local 259 fFlags |= disabled ? kIsDisabled_StencilFlag : kNotDisabled_StencilFlag; 260 return disabled;
|
/external/v8/src/ |
H A D | flags.cc | 238 bool disabled = f->type() == Flag::TYPE_BOOL && !*f->bool_variable(); local 240 os << (disabled ? "--no" : "--") << f->name();
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
H A D | fixture.py | 99 disabled = True variable in class:TestApp 500 disabled = True variable in class:TestResponse 890 disabled = True variable in class:TestRequest 1335 disabled = True variable in class:TestFileEnvironment
|
/external/replicaisland/src/com/replica/replicaisland/ |
H A D | HudSystem.java | 178 public void setButtonDrawables(DrawableBitmap disabled, DrawableBitmap enabled, DrawableBitmap depressed, argument 181 mFlyButtonDisabledDrawable = disabled;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
H A D | config_ssid.h | 126 * If this is a persistent P2P group (disabled == 2), this is the GO 269 * known as opportunistic PMKSA caching for WPA2. This is disabled (0) 290 * SSID, are allowed. This is disabled (0) by default. Enable by 372 * disabled - Whether this network is currently disabled 375 * 1 = this network block is disabled (can be enabled through 380 int disabled; member in struct:wpa_ssid 383 * disabled_for_connect - Whether this network was temporarily disabled 385 * This flag is used to reenable all the temporarily disabled networks 396 * 0 = disabled (defaul [all...] |
H A D | scan.c | 98 int count = 0, disabled = 0; local 107 disabled++; 113 if (count == 0 && disabled > 0) { 114 wpa_dbg(wpa_s, MSG_DEBUG, "No enabled networks (%d disabled " 115 "networks)", disabled); 666 wpa_dbg(wpa_s, MSG_DEBUG, "Skip scan - interface disabled");
|
H A D | driver_i.h | 576 int disabled) 580 return wpa_s->driver->radio_disable(wpa_s->drv_priv, disabled); 575 wpa_drv_radio_disable(struct wpa_supplicant *wpa_s, int disabled) argument
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
H A D | wpagui.cpp | 1265 cmd.append(" disabled"); 1310 void WpaGui::disableListedNetwork(bool disabled) argument 1312 if (networkList->currentRow() < 0 || !disabled)
|
/external/wpa_supplicant_8/hostapd/src/ap/ |
H A D | hostapd.h | 112 unsigned int disabled:1; member in struct:hostapd_data
|
/external/wpa_supplicant_8/hostapd/src/eap_peer/ |
H A D | eap.c | 802 * and state machine waits here until port is disabled or EAP authentication is 834 * until port is disabled or EAP authentication is restarted. 2862 * @disabled: 1 = EAP disabled, 0 = EAP enabled 2864 * This function is used to force EAP state machine to be disabled when it is 2867 void eap_set_force_disabled(struct eap_sm *sm, int disabled) argument 2869 sm->force_disabled = disabled;
|
/external/wpa_supplicant_8/src/ap/ |
H A D | hostapd.h | 112 unsigned int disabled:1; member in struct:hostapd_data
|
/external/wpa_supplicant_8/src/eap_peer/ |
H A D | eap.c | 802 * and state machine waits here until port is disabled or EAP authentication is 834 * until port is disabled or EAP authentication is restarted. 2862 * @disabled: 1 = EAP disabled, 0 = EAP enabled 2864 * This function is used to force EAP state machine to be disabled when it is 2867 void eap_set_force_disabled(struct eap_sm *sm, int disabled) argument 2869 sm->force_disabled = disabled;
|
/external/wpa_supplicant_8/wpa_supplicant/src/ap/ |
H A D | hostapd.h | 112 unsigned int disabled:1; member in struct:hostapd_data
|