Searched refs:enabled (Results 226 - 250 of 573) sorted by relevance

1234567891011>>

/macosx-10.10/apache-793/httpd/modules/mappers/
H A Dmod_speling.c61 int enabled; member in struct:__anon6303
78 cfg->enabled = 0;
107 (void*)APR_OFFSETOF(spconfig, enabled), OR_OPTIONS,
204 if (!cfg->enabled) {
/macosx-10.10/apache-793/httpd/modules/metadata/
H A Dmod_usertrack.c83 int enabled; member in struct:__anon6333
213 if (!dcfg->enabled || r->main) {
272 dcfg->enabled = 0;
285 dcfg->enabled = arg;
/macosx-10.10/apache-793/httpd/modules/session/
H A Dmod_session.h104 int enabled; /* whether the session has been enabled for member in struct:__anon6363
111 int env; /* whether the session has been enabled for
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOEventSource.h121 /*! @var enabled
122 Is this event source enabled to deliver requests to the work-loop. */
123 bool enabled; member in class:IOEventSource
223 @discussion A subclass implementation is expected to respect the enabled
230 @discussion A subclass implementation is expected to respect the enabled
236 @result true if enabled. */
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dccaudit.c80 static bool enabled = false; local
88 enabled = true;
95 return enabled;
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DGtkInputMethodFilter.cpp124 void GtkInputMethodFilter::setEnabled(bool enabled) argument
126 m_enabled = enabled;
127 if (enabled)
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DDOMNodeStyles.js482 changePropertyEnabledState: function(property, enabled)
484 enabled = !!enabled;
492 CSSAgent.toggleProperty(property.ownerStyle.id, property.index, !enabled, this._handlePropertyChange.bind(this, property));
579 var enabled = true; variable
587 enabled = true;
591 enabled = true;
594 enabled = false;
621 property.update(text, name, value, priority, enabled, overridden, implicit, anonymous, valid, styleSheetTextRange, styleDeclarationTextRange);
632 pendingProperty.update(text, name, value, priority, enabled, overridde
[all...]
/macosx-10.10/mDNSResponder-561.1.1/mDNSWindows/SystemService/
H A DFirewall.cpp149 // It's listed, but is it enabled?
156 // Yes, it's enabled
212 // Only add the application if it isn't enabled
333 // Find out if the globally open port is enabled.
441 BOOL enabled = FALSE; local
464 err = mDNSFirewallIsFileAndPrintSharingEnabled( fwProfile, &enabled );
483 return enabled;
/macosx-10.10/ruby-106/ruby/
H A Dvm_insnhelper.h213 #define CI_SET_FASTPATH(ci, func, enabled) do { \
214 if (LIKELY(enabled)) ((ci)->call = (func)); \
217 #define CI_SET_FASTPATH(ci, func, enabled) /* do nothing */
/macosx-10.10/bootp-298/IPConfiguration.bproj/
H A DCGA.c212 int enabled; local
213 size_t enabled_size = sizeof(enabled);
216 &enabled, &enabled_size, NULL, 0) != 0) {
220 enabled = 0;
222 return (enabled != 0);
/macosx-10.10/emacs-93/emacs/src/
H A Dw32menu.c80 /* true if enabled */
81 Boolean enabled; member in struct:_widget_value
413 don't bother really computing whether an item is enabled. */
517 Lisp_Object map, item_string, enabled;
539 enabled = AREF (item_properties, ITEM_PROPERTY_ENABLE);
544 if (!NILP (enabled))
545 /* An enabled separate pane. Remember this to handle it later. */
551 push_menu_item (item_string, enabled, key,
559 if (! (NILP (map) || NILP (enabled)))
1205 wv->enabled
512 Lisp_Object map, item_string, enabled; local
[all...]
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl.c446 ossl_fips_mode_set(VALUE self, VALUE enabled) argument
450 if (RTEST(enabled)) {
458 return enabled;
460 if (RTEST(enabled))
462 return enabled;
1003 * Boolean indicating whether OpenSSL is FIPS-enabled or not
/macosx-10.10/postfix-255/postfix/src/postmulti/
H A Dpostmulti.c80 /* If multi-instance support is not enabled, the requested
111 /* instances that are not enabled. The full list of commands
294 /* Mark the selected instance as enabled. This just sets the
521 int enabled; /* start/stop enable */ member in struct:instance
683 ip->enabled = 0;
756 ip->enabled = var_multi_enable;
818 ip->enabled = name_code(bool_code, NAME_CODE_FLAG_NONE, value);
819 if (ip->enabled < 0)
861 primary_instance->enabled = 1; /* Single-instance mode */
1314 if (selected->enabled)
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_view.cpp421 Eina_Bool ewk_view_mouse_events_enabled_set(Evas_Object* ewkView, Eina_Bool enabled) argument
425 impl->setMouseEventsEnabled(!!enabled);
455 Eina_Bool ewk_view_touch_events_enabled_set(Evas_Object* ewkView, Eina_Bool enabled) argument
460 impl->setTouchEventsEnabled(!!enabled);
465 UNUSED_PARAM(enabled);
692 Eina_Bool ewk_view_layout_fixed_set(Evas_Object* ewkView, Eina_Bool enabled) argument
696 WKPageSetUseFixedLayout(WKViewGetPage(impl->wkView()), enabled);
H A Dewk_view.h738 * @param enabled a state to set
742 EAPI Eina_Bool ewk_view_mouse_events_enabled_set(Evas_Object *o, Eina_Bool enabled);
747 * @param o view object to query if the mouse events are enabled
749 * @return @c EINA_TRUE if the mouse events are enabled or @c EINA_FALSE otherwise
775 * @param enabled a state to set
779 EAPI Eina_Bool ewk_view_touch_events_enabled_set(Evas_Object *o, Eina_Bool enabled);
784 * @param o view object to query if the touch events are enabled
786 * @return @c EINA_TRUE if the touch events are enabled or @c EINA_FALSE otherwise
874 * @param enabled a state to set
878 EAPI Eina_Bool ewk_view_layout_fixed_set(Evas_Object *o, Eina_Bool enabled);
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DScrollbarThemeMac.mm278 return scrollbar->enabled() && buttonsPlacement() != ScrollbarButtonsNone
292 return scrollbar->enabled() && (scrollbar->orientation() == HorizontalScrollbar ?
468 [scrollbarMap()->get(scrollbar) setEnabled:scrollbar->enabled()];
482 [painter setEnabled:scrollbar->enabled()];
492 static void scrollbarPainterPaint(ScrollbarPainter scrollbarPainter, bool enabled)
499 // If the scrollbar is not enabled, then there is nothing to scroll to, and we shouldn't
501 if (enabled)
517 scrollbarPainterPaint(scrollbarMap()->get(scrollbar).get(), scrollbar->enabled());
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebView.h431 /* [in] */ BOOL *enabled);
437 /* [in] */ BOOL *enabled);
443 /* [retval][out] */ BOOL *enabled);
465 /* [retval][out] */ BOOL *enabled);
468 /* [retval][out] */ BOOL *enabled);
471 /* [retval][out] */ BOOL *enabled);
474 /* [retval][out] */ BOOL *enabled);
477 /* [retval][out] */ BOOL *enabled);
480 /* [retval][out] */ BOOL *enabled);
483 BOOL enabled);
[all...]
/macosx-10.10/WebCore-7600.1.25/testing/
H A DInternals.cpp964 void Internals::setAutofilled(Element* element, bool enabled, ExceptionCode& ec) argument
971 inputElement->setAutofilled(enabled);
1042 void Internals::setDelegatesScrolling(bool enabled, ExceptionCode& ec) argument
1051 document->view()->setDelegatesScrolling(enabled);
1329 void Internals::setContinuousSpellCheckingEnabled(bool enabled, ExceptionCode&) argument
1334 if (enabled != contextDocument()->frame()->editor().isContinuousSpellCheckingEnabled())
1338 void Internals::setAutomaticQuoteSubstitutionEnabled(bool enabled, ExceptionCode&) argument
1344 if (enabled != contextDocument()->frame()->editor().isAutomaticQuoteSubstitutionEnabled())
1347 UNUSED_PARAM(enabled);
1351 void Internals::setAutomaticLinkDetectionEnabled(bool enabled, ExceptionCod argument
1364 setAutomaticDashSubstitutionEnabled(bool enabled, ExceptionCode&) argument
1377 setAutomaticTextReplacementEnabled(bool enabled, ExceptionCode&) argument
1390 setAutomaticSpellingCorrectionEnabled(bool enabled, ExceptionCode&) argument
1510 setJavaScriptProfilingEnabled(bool enabled, ExceptionCode& ec) argument
2049 setUsesOverlayScrollbars(bool enabled) argument
[all...]
/macosx-10.10/Security-57031.1.35/libsecurity_smime/Security/
H A Dsmimeutil.c134 Boolean enabled; /* in the user's preferences */ member in struct:__anon5387
140 /* cipher algtag parms enabled allowed */
196 if (smime_cipher_map[mapi].enabled != on)
197 smime_cipher_map[mapi].enabled = on;
422 if (mapi >= 0 && smime_cipher_map[mapi].enabled)
508 /* if cipher is not enabled or not allowed by policy, forget it */
509 if (!smime_cipher_map[mapi].enabled || !smime_cipher_map[mapi].allowed)
596 * scans the list of allowed and enabled ciphers and construct a PKCS9-compliant
632 if (!map->enabled)
/macosx-10.10/Security-57031.1.35/libsecurity_smime/lib/
H A Dsmimeutil.c134 Boolean enabled; /* in the user's preferences */ member in struct:__anon5409
140 /* cipher algtag parms enabled allowed */
196 if (smime_cipher_map[mapi].enabled != on)
197 smime_cipher_map[mapi].enabled = on;
422 if (mapi >= 0 && smime_cipher_map[mapi].enabled)
508 /* if cipher is not enabled or not allowed by policy, forget it */
509 if (!smime_cipher_map[mapi].enabled || !smime_cipher_map[mapi].allowed)
596 * scans the list of allowed and enabled ciphers and construct a PKCS9-compliant
632 if (!map->enabled)
/macosx-10.10/Security-57031.1.35/libsecurity_smime/security_smime/
H A Dsmimeutil.c134 Boolean enabled; /* in the user's preferences */ member in struct:__anon5431
140 /* cipher algtag parms enabled allowed */
196 if (smime_cipher_map[mapi].enabled != on)
197 smime_cipher_map[mapi].enabled = on;
422 if (mapi >= 0 && smime_cipher_map[mapi].enabled)
508 /* if cipher is not enabled or not allowed by policy, forget it */
509 if (!smime_cipher_map[mapi].enabled || !smime_cipher_map[mapi].allowed)
596 * scans the list of allowed and enabled ciphers and construct a PKCS9-compliant
632 if (!map->enabled)
/macosx-10.10/WebCore-7600.1.25/platform/
H A DScrollbarThemeComposite.cpp115 if (!scrollbar->enabled())
221 if (scrollbar->enabled()) {
234 if (!scrollbar->enabled())
/macosx-10.10/WebCore-7600.1.25/plugins/mac/
H A DPluginPackageMac.cpp174 RetainPtr<CFNumberRef> enabled = (CFNumberRef)CFDictionaryGetValue(extensionsDict.get(), CFSTR("WebPluginTypeEnabled")); local
175 if (enabled) {
177 if (CFNumberGetValue(enabled.get(), kCFNumberIntType, &enabledValue) && enabledValue == 0)
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dsession.c138 launchd_update_racoon_keepalive (Boolean enabled) argument
141 int64_t val = (__typeof__(val))enabled;
148 "failed to swap launchd keepalive integer %d\n", enabled);
/macosx-10.10/xnu-2782.1.97/osfmk/kperf/
H A Daction.c86 boolean_t enabled; local
157 enabled = ml_set_interrupts_enabled(FALSE);
200 ml_set_interrupts_enabled(enabled);

Completed in 329 milliseconds

1234567891011>>