HomeSort by relevance Sort by last modified time
    Searched defs:handler (Results 1201 - 1225 of 2987) sorted by null

<<41424344454647484950>>

  /external/libchrome/base/debug/
stack_trace_posix.cc 131 void OutputPointer(void* pointer, BacktraceOutputHandler* handler) {
135 handler->HandleOutput("0x");
138 handler->HandleOutput(buf);
142 void OutputFrameId(intptr_t frame_id, BacktraceOutputHandler* handler) {
147 handler->HandleOutput("#");
149 handler->HandleOutput(buf);
155 BacktraceOutputHandler* handler) {
157 // stack dumping signal handler). NO malloc or stdio is allowed here.
161 OutputFrameId(i, handler);
162 handler->HandleOutput(" ")
740 PrintBacktraceOutputHandler handler; local
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/
ResourceExtractor.java 11 import android.os.Handler;
238 Handler handler = new Handler(Looper.getMainLooper()); local
240 handler.post(callback);
247 handler.post(callback);
  /external/libopus/src/
mlp_train.c 40 void handler(int sig) function
43 signal(sig, handler);
449 signal(SIGTERM, handler);
450 signal(SIGINT, handler);
451 signal(SIGHUP, handler);
  /external/libunwind/include/
libunwind-dynamic.h 105 unw_word_t handler; /* address of personality routine */ member in struct:unw_dyn_proc_info
  /external/libxml2/
parserInternals.c 918 xmlCharEncodingHandlerPtr handler, int len);
921 xmlCharEncodingHandlerPtr handler, int len);
935 xmlCharEncodingHandlerPtr handler; local
1009 handler = xmlGetCharEncodingHandler(enc);
1010 if (handler == NULL) {
1100 if (handler == NULL) {
1105 ret = xmlSwitchToEncodingInt(ctxt, handler, len);
1120 * @handler: the encoding handler
    [all...]
  /external/linux-kselftest/tools/testing/selftests/x86/
ldt_gdt.c 475 void *handler; /* the real type is nasty */ member in struct:fake_ksigaction
509 static void sethandler(int sig, void (*handler)(int, siginfo_t *, void *),
514 sa.sa_sigaction = handler;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
Mp4TrackImpl.java 40 private String handler; field in class:Mp4TrackImpl
47 handler = trackBox.getMediaBox().getHandlerBox().getHandlerType();
203 return handler;
217 "handler='" + handler + '\'' +
  /external/python/cpython2/Lib/test/
test_pyexpat.py 2 # handler, are obscure and unhelpful.
465 def handler(text): function in function:sf1296433Test.test_parse_only_xml_data
469 parser.CharacterDataHandler = handler
504 # Feed 512 bytes of character data: the handler should be called
  /external/python/cpython2/Modules/
_codecsmodule.c 1013 /* --- Error handler registry --------------------------------------------- */
1016 "register_error(errors, handler)\n\
1018 Register the specified error handler under the name\n\
1019 errors. handler must be a callable object, that\n\
1027 PyObject *handler; local
1030 &name, &handler))
1032 if (PyCodec_RegisterError(name, handler))
1038 "lookup_error(errors) -> handler\n\
1040 Return the error handler for the specified error handling name\n\
1041 or raise a LookupError, if no handler exists under this name.")
    [all...]
pyexpat.c 94 xmlhandler handler; member in struct:HandlerInfo
147 PyObject *handler = self->handlers[type]; local
148 return handler != NULL;
228 /* This handler is used when an error has been detected, in the hope
241 /* Dummy character data handler used when an error (exception) has
243 This is needed since character data handler can't be safely removed
244 from within the character data handler, but can be replaced. It is
245 used only from the character data handler trampoline, and must be
477 /* handler might have changed; drop the rest on the floor
478 * if there isn't a handler anymor
    [all...]
  /external/python/cpython2/Modules/expat/
xmlrole.h 88 int (PTRCALL *handler) (struct prolog_state *state, member in struct:prolog_state
108 (((state)->handler)(state, tok, ptr, end, enc))
  /external/python/cpython2/Python/
codecs.c 569 PyErr_SetString(PyExc_TypeError, "handler must be callable");
581 PyObject *handler = NULL; local
589 handler = PyDict_GetItemString(interp->codec_error_registry, (char *)name);
590 if (!handler)
591 PyErr_Format(PyExc_LookupError, "unknown error handler name '%.400s'", name);
593 Py_INCREF(handler);
594 return handler;
  /external/python/cpython3/Lib/test/
test_poplib.py 198 handler = DummyPOP3Handler variable in class:DummyPOP3Server
232 self.handler_instance = self.handler(conn)
320 self.server.handler.enable_UTF8 = False
324 self.server.handler.enable_UTF8 = True
385 self.server.handler = DummyPOP3_SSLHandler
  /external/python/cpython3/Modules/expat/
xmlrole.h 88 int (PTRCALL *handler) (struct prolog_state *state, member in struct:prolog_state
108 (((state)->handler)(state, tok, ptr, end, enc))
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
SandboxClassLoader.java 986 private final Label handler; field in class:SandboxClassLoader.TryCatch
1001 void handler() { method in class:SandboxClassLoader.TryCatch
    [all...]
  /external/selinux/sandbox/
seunshare.c 92 void handler(int sig) { function
113 perror("Unable to set SIGHUP handler");
117 if (signal(SIGINT, handler) == SIG_ERR) {
118 perror("Unable to set SIGINT handler");
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 156 for (ExceptionHandler handler: tryBlock.getExceptionHandlers()) {
157 dexPool.typeSection.internNullable(handler.getExceptionType());
413 @Nullable @Override public CharSequence getExceptionType(@Nonnull ExceptionHandler handler) {
414 return handler.getExceptionType();
  /external/syslinux/gpxe/src/core/
i82365.c 94 void (*handler)(void *info, u_int events); member in struct:socket_info_t
  /external/syslinux/gpxe/src/drivers/net/
ipoib.c 330 /** Handler */
349 struct ipoib_eth_addr_handler *handler; local
354 handler = &ipoib_eth_addr_handlers[i];
355 if ( ( handler->byte1 == guid->u.bytes[1] ) &&
356 ( handler->byte2 == guid->u.bytes[2] ) ) {
357 return handler->eth_addr ( guid, eth_addr );
  /external/v8/src/compiler/
code-generator.h 15 #include "src/trap-handler/trap-handler.h"
263 Label* handler; member in struct:v8::internal::compiler::final::HandlerInfo
  /external/v8/src/ia32/
deoptimizer-ia32.cc 174 intptr_t handler = local
178 output_frame->SetRegister(ebx.code(), handler);
  /external/v8/src/inspector/
v8-runtime-agent-impl.cc 83 ProtocolPromiseHandler<Callback>* handler = new ProtocolPromiseHandler( local
86 v8::Local<v8::Value> wrapper = handler->m_wrapper.Get(inspector->isolate());
108 ProtocolPromiseHandler<Callback>* handler = local
111 DCHECK(handler);
117 handler->wrapObject(value));
119 handler->m_callback->sendSuccess(
124 ProtocolPromiseHandler<Callback>* handler = local
127 DCHECK(handler);
134 handler->wrapObject(value));
138 handler->m_inspector->debugger()->captureStackTrace(true)
    [all...]
  /external/v8/src/x87/
deoptimizer-x87.cc 174 intptr_t handler = local
178 output_frame->SetRegister(ebx.code(), handler);
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
SurfaceTextureHelperTest.java 31 import android.os.Handler;
299 final Handler handler = new Handler(thread.getLooper()); local
303 SurfaceTextureHelper.create(null, handler);
324 surfaceTextureHelper.disconnect(handler);
335 final Handler handler = new Handler(thread.getLooper()); local
339 SurfaceTextureHelper.create(null, handler);
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop_win.c 21 eloop_sock_handler handler; member in struct:eloop_sock
28 eloop_event_handler handler; member in struct:eloop_event
37 eloop_timeout_handler handler; member in struct:eloop_timeout
43 eloop_signal_handler handler; member in struct:eloop_signal
113 int eloop_register_read_sock(int sock, eloop_sock_handler handler,
144 tmp[eloop.reader_count].handler = handler;
184 eloop_event_handler handler,
203 tmp[eloop.event_count].handler = handler;
592 eloop_timeout_handler handler = local
    [all...]

Completed in 1565 milliseconds

<<41424344454647484950>>