HomeSort by relevance Sort by last modified time
    Searched refs:handlers (Results 1 - 25 of 378) 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
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/handlers/
StaticPortConfigHandler.java 17 package com.android.ide.eclipse.monitor.handlers;
24 import org.eclipse.ui.handlers.HandlerUtil;
  /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;
  /libcore/support/src/test/java/tests/io/
MockOs.java 37 private final InheritableThreadLocal<Map<String, Deque<InvocationHandler>>> handlers field in class:MockOs
85 * Returns the invocation handlers to handle upcoming invocations of
89 Map<String, Deque<InvocationHandler>> threadFaults = handlers.get();
103 Deque<InvocationHandler> handlers = getHandlers(methodName); local
105 handlers.add(delegateHandler);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
opts.h 250 option handlers. */
270 const struct cl_option_handlers *handlers,
293 /* The number of individual handlers. */
296 /* The handlers themselves. */
297 struct cl_option_handler_func handlers[3]; member in struct:cl_option_handlers
331 extern void set_default_handlers (struct cl_option_handlers *handlers);
350 const struct cl_option_handlers *handlers,
362 const struct cl_option_handlers *handlers,
367 const struct cl_option_handlers *handlers,
378 const struct cl_option_handlers *handlers,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 27 import sys, logging, logging.handlers, socket, struct, os, traceback, re namespace
77 # Handlers add themselves to logging._handlers
78 handlers = _install_handlers(cp, formatters)
79 _install_loggers(cp, handlers, disable_existing_loggers)
134 """Install and return handlers"""
135 hlist = cp.get("handlers", "keys")
140 handlers = {}
162 if issubclass(klass, logging.handlers.MemoryHandler):
169 handlers[hand] = h
170 #now all handlers are loaded, fixup inter-handler references..
    [all...]

Completed in 897 milliseconds

1 2 3 4 5 6 7 8 91011>>