HomeSort by relevance Sort by last modified time
    Searched refs:handlers (Results 1 - 25 of 267) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/oprofile/daemon/
opd_extended.c 58 && ext_feature_table[opd_ext_feat_index].handlers != NULL)
68 && ext_feature_table[opd_ext_feat_index].handlers != NULL
69 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile != NULL)
102 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_init(args);
120 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_deinit();
129 && ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats != NULL) {
131 ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats();
143 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create != NULL)
144 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create(sf);
152 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup != NULL
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
handler_options.css 5 .handlers-column-headers {
11 .handlers-type-column {
17 .handlers-site-column {
21 .handlers-site-column select {
25 .handlers-remove-column {
29 .handlers-remove-link {
38 div > .handlers-remove-column {
42 div:not(.none):hover > .handlers-remove-column {
46 #handlers {
handler_options.js 8 * handlers: Array,
15 var Handlers;
32 'handlers',
43 * The handlers list.
60 * Creates, decorates and initializes the handlers list.
64 var handlersList = $('handlers-list');
69 var ignoredHandlersList = $('ignored-handlers-list');
78 * Sets the list of handlers shown by the view.
79 * @param {Array.<Handlers>} handlers Handlers to be shown in the view
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/x11/
shared_x_display.cc 51 EventHandlersMap::iterator handlers = event_handlers_.find(type); local
52 if (handlers == event_handlers_.end())
56 std::remove(handlers->second.begin(), handlers->second.end(), handler);
57 handlers->second.erase(new_end, handlers->second.end());
59 // Check if no handlers left for this event.
60 if (handlers->second.empty())
61 event_handlers_.erase(handlers);
76 EventHandlersMap::iterator handlers = event_handlers_.find(e.type) local
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
quick_exit.c 33 * Linked list of quick exit handlers. This is simpler than the atexit()
43 * Lock protecting the handlers list.
47 * Stack of cleanup handlers. These will be invoked in reverse order when
49 static struct quick_exit_handler *handlers; variable in typeref:struct:quick_exit_handler
62 h->next = handlers;
63 handlers = h;
77 for (h = handlers; NULL != h; h = h->next)
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 102 /** {@code non-null;} list of catch handlers */
103 private final CatchHandlerList handlers; field in class:CatchTable.Entry
110 * @param handlers {@code non-null;} list of catch handlers
112 public Entry(int start, int end, CatchHandlerList handlers) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 101 /** {@code non-null;} list of catch handlers */
102 private final CatchHandlerList handlers; field in class:CatchTable.Entry
109 * @param handlers {@code non-null;} list of catch handlers
111 public Entry(int start, int end, CatchHandlerList handlers) {
120 if (handlers.isMutable()) {
121 throw new IllegalArgumentException("handlers.isMutable()");
126 this.handlers = handlers;
133 hash = (hash * 31) + handlers.hashCode()
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchTable.java 102 /** {@code non-null;} list of catch handlers */
103 private final CatchHandlerList handlers; field in class:CatchTable.Entry
110 * @param handlers {@code non-null;} list of catch handlers
112 public Entry(int start, int end, CatchHandlerList handlers) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
  /external/chromium_org/extensions/common/manifest_handlers/
file_handler_manifest_unittest.cc 41 const FileHandlersInfo* handlers = local
43 ASSERT_TRUE(handlers != NULL);
44 ASSERT_EQ(2U, handlers->size());
46 FileHandlerInfo handler = handlers->at(0);
54 handler = handlers->at(1);
62 // This should load successfully but have the file handlers ignored.
67 const FileHandlersInfo* handlers = local
69 ASSERT_TRUE(handlers == NULL);
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler_manifest_unittest.cc 73 FileBrowserHandler::List* handlers = local
75 ASSERT_TRUE(handlers != NULL);
76 ASSERT_EQ(1U, handlers->size());
77 const FileBrowserHandler* action = handlers->at(0).get();
109 FileBrowserHandler::List* handlers = local
111 ASSERT_TRUE(handlers != NULL);
112 ASSERT_EQ(1U, handlers->size());
113 const FileBrowserHandler* action = handlers->at(0).get();
140 FileBrowserHandler::List* handlers = local
142 ASSERT_TRUE(handlers != NULL)
    [all...]
  /external/chromium-trace/trace-viewer/examples/
run_stream_server.sh 8 HANDLERSPATH=examples/stream_server/handlers
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_signal_registrar.cc 24 HandlerList& handlers = list_iter->second; local
25 for (HandlerList::iterator ids_iter = handlers.begin();
26 ids_iter != handlers.end(); ++ids_iter) {
76 // The signal handlers will be disconnected automatically. Just erase the
89 HandlerList& handlers = iter->second; local
90 for (HandlerList::iterator ids_iter = handlers.begin();
91 ids_iter != handlers.end(); ++ids_iter) {
  /external/chromium_org/chrome/browser/ui/webui/
constrained_web_dialog_ui.cc 68 std::vector<WebUIMessageHandler*> handlers; local
69 dialog_delegate->GetWebUIMessageHandlers(&handlers);
72 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin();
73 it != handlers.end(); ++it) {
  /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
InterfaceWithClient.java 82 DelegatingConnectionErrorHandler handlers = new DelegatingConnectionErrorHandler(); local
83 handlers.addConnectionErrorHandler(client);
84 router.setErrorHandler(handlers);
87 handlers.addConnectionErrorHandler(proxy);
  /external/chromium_org/ui/web_dialogs/
web_dialog_ui.cc 87 std::vector<WebUIMessageHandler*> handlers; local
91 delegate->GetWebUIMessageHandlers(&handlers);
96 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin();
97 it != handlers.end(); ++it) {
  /external/chromium_org/chrome/common/
worker_thread_ticker.cc 28 // You cannot change the list of handlers when the timer is running.
39 // You cannot change the list of handlers when the timer is running.
88 const TickHandlerListType& handlers = tick_handler_list_; local
89 for (TickHandlerListType::const_iterator i = handlers.begin();
90 i != handlers.end(); ++i) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logutils.py 129 """Return a list of the default logging handlers to use.
159 handlers=None):
163 A list of references to the logging handlers added to the root
164 logger. This allows the caller to later remove the handlers
176 handlers. The stream must define an "encoding" data attribute,
178 handlers: A list of logging.Handler instances to add to the logger
197 if handlers is None:
198 handlers = _default_handlers(stream, logging_level)
202 for handler in handlers:
207 return handlers
    [all...]
  /external/chromium_org/chrome/browser/policy/
configuration_policy_handler_list_factory.cc 550 scoped_ptr<ConfigurationPolicyHandlerList> handlers(
555 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
561 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
563 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
565 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
567 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
569 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
571 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
575 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
577 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>
    [all...]
  /external/chromium_org/chrome/browser/ui/login/
login_prompt_browsertest.cc 186 EXPECT_TRUE(observer.handlers().empty());
210 ASSERT_FALSE(observer.handlers().empty());
214 LoginHandler* handler = *observer.handlers().begin();
227 ASSERT_EQ(1u, observer.handlers().size());
229 LoginHandler* handler = *observer.handlers().begin();
260 ASSERT_FALSE(observer.handlers().empty());
264 LoginHandler* handler = *observer.handlers().begin();
277 ASSERT_EQ(1u, observer.handlers().size());
279 LoginHandler* handler = *observer.handlers().begin();
330 ASSERT_EQ(2u, observer.handlers().size())
    [all...]
  /external/chromium_org/chrome/common/extensions/api/url_handlers/
url_handlers_parser.cc 54 return info ? &info->handlers : NULL;
68 const std::vector<UrlHandlerInfo>* handlers = GetUrlHandlers(extension); local
69 if (!handlers)
77 handlers->begin(); it != handlers->end(); it++) {
155 if (!ParseUrlHandler(iter.key(), *handler, &info->handlers, error)) {
  /external/chromium_org/chrome/browser/chromeos/ui/
inline_login_dialog.h 31 std::vector<content::WebUIMessageHandler*>* handlers) const OVERRIDE;
  /external/chromium_org/chrome/browser/resources/cryptotoken/
errorcodes.js 6 * @fileoverview Errors reported by top-level request handlers.
  /external/chromium_org/chrome/browser/ui/webui/options/
handler_options_handler.cc 93 const ProtocolHandlerRegistry::ProtocolHandlerList& handlers,
96 for (handler = handlers.begin(); handler != handlers.end(); ++handler) {
111 // for Handlers. Please update them whenever you add or remove any keys here.
123 handlers_value->Set("handlers", handlers_list);
126 void HandlerOptionsHandler::GetIgnoredHandlers(base::ListValue* handlers) {
130 return GetHandlersAsListValue(ignored_handlers, handlers);
138 base::ListValue handlers; local
143 handlers.Append(handler_value);
148 web_ui()->CallJavascriptFunction("HandlerOptions.setHandlers", handlers);
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
tts_custom_bindings.js 16 var handlers = {};
19 var eventHandler = handlers[event.srcId];
27 delete handlers[event.srcId];
47 handlers[id] = args[1].onEvent;
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry.cc 43 // If true default protocol handlers will be removed if the OS level
103 // Copy of protocol handlers use only on the IO thread.
384 const ProtocolHandlerList* handlers = GetHandlerList(handler.protocol()); local
385 if (!handlers)
387 for (ProtocolHandlerList::const_iterator p = handlers->begin();
388 p != handlers->end(); p++) {
416 // Only chromeos has default protocol handlers at this point.
475 const ProtocolHandlerList* handlers = GetHandlerList(scheme); local
476 if (!handlers)
481 for (i = 0, p = handlers->begin(); p != handlers->end(); ++p, ++i)
517 const ProtocolHandlerList* handlers = GetHandlerList(scheme); local
528 const ProtocolHandlerList* handlers = GetHandlerList(handler.protocol()); local
562 const ProtocolHandlerList* handlers = GetHandlerList(handler.protocol()); local
614 ProtocolHandlerList& handlers = protocol_handlers_[handler.protocol()]; local
823 base::ListValue* handlers = new base::ListValue(); local
869 const base::ListValue* handlers = prefs->GetList(pref_name); local
    [all...]

Completed in 1243 milliseconds

1 2 3 4 5 6 7 8 91011