HomeSort by relevance Sort by last modified time
    Searched defs:handler (Results 201 - 225 of 1746) sorted by null

1 2 3 4 5 6 7 891011>>

  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 47 static uint16_t g_handler_history_count = 0; /* history count for handler */
59 * utility function to generate handler
64 uint32_t handler = 0; local
70 handler = g_handler_history_count;
71 handler = (handler<<8) | index;
73 return handler;
79 * @handler: handle value
88 uint8_t mm_jpeg_util_get_index_by_handler(uint32_t handler)
90 return (handler & 0x000000ff)
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
rb_wrapper.cpp 118 wifi_ring_buffer_data_handler handler; local
130 handler.on_ring_buffer_data = info->on_ring_buffer_data;
132 if (handler.on_ring_buffer_data) {
133 handler.on_ring_buffer_data(rb_info->name, (char *)buf,
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerTest.java 36 ContentHandler handler = new ContentHandlerImpl(); local
37 ((ContentHandlerImpl) handler).setContent(new Foo());
38 Object content = handler.getContent(conn, classes);
41 ((ContentHandlerImpl) handler).setContent(new FooSub());
42 content = handler.getContent(conn, classes);
46 ((ContentHandlerImpl) handler).setContent(new Foo());
47 content = handler.getContent(conn, classes2);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
modifier.hpp 57 nfp::keyword<struct handler_t> handler; member in namespace:boost::BOOST_RT_PARAM_NAMESPACE::cla::__anon35423
  /packages/apps/PhoneCommon/src/com/android/phone/common/util/
SettingsUtil.java 26 import android.os.Handler;
44 * Queries for a ringtone name, and sets the name using a handler.
48 * @param handler The handler, which takes the name of the ringtone as a String as a parameter.
51 * @param msg An integer identifying the message sent to the handler.
54 Context context, Handler handler, int type, String key, int msg) {
101 handler.sendMessage(handler.obtainMessage(msg, summary));
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 32 MyHandler handler; local
35 reader.Parse(ss, handler);
  /system/webservd/libwebserv/
dbus_protocol_handler.h 68 std::unique_ptr<RequestHandlerInterface> handler) override;
90 std::unique_ptr<RequestHandlerInterface> handler; member in struct:libwebserv::DBusProtocolHandler::HandlerMapEntry
101 // Asynchronous callbacks to handle successful or failed request handler
123 // Makes a call to the (remote) web server request handler over D-Bus to
132 // A helper method to obtain a corresponding protocol handler D-Bus proxy for
137 // Protocol Handler name.
141 // Handler data map. The key is the client-facing request handler ID returned
142 // by AddHandler() when registering the handler.
144 // The counter to generate new handler IDs
    [all...]
  /system/webservd/webservd/
protocol_handler.h 38 // An instance of a handler for particular protocol (http/https) bound to a
46 // Registers a new request handler for the given URL and request method.
47 // Returns a handler ID (GUID).
51 std::unique_ptr<RequestHandlerInterface> handler);
53 // Removes a previously registered handler.
56 // Finds a handler for given URL/Method. This is the method used to look up
57 // the handler for incoming HTTP requests.
67 // Returns the port this handler listens for requests on.
70 // Returns the protocol name for this handler ("http" or "https").
74 // connection. Returns an empty byte array if this handler is serving http
105 std::unique_ptr<RequestHandlerInterface> handler; member in struct:webservd::final::HandlerMapEntry
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorOutputElem.java 170 * @param handler The calling StylesheetHandler/TemplatesBuilder.
186 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
192 m_outputProperties.setDOMBackPointer(handler.getOriginatingNode());
193 m_outputProperties.setLocaterInfo(handler.getLocator());
194 m_outputProperties.setUid(handler.nextUid());
195 setPropertiesFromAttributes(handler, rawName, attributes, this);
207 handler.getBaseIdentifier());
212 handler.error(te.getMessage(), te);
216 handler.getStylesheet().setOutput(m_outputProperties);
218 ElemTemplateElement parent = handler.getElemTemplateElement()
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
ContextHandlerCollection.java 19 package org.eclipse.jetty.server.handler;
31 import org.eclipse.jetty.server.Handler;
41 * This {@link org.eclipse.jetty.server.handler.HandlerCollection} is creates a
43 * on the context path and virtual hosts of any contained {@link org.eclipse.jetty.server.handler.ContextHandler}s.
71 Handler[] branches = getHandlers();
76 Handler[] handlers=null;
80 handlers = new Handler[]{ branches[b] };
91 ContextHandler handler=(ContextHandler)handlers[i]; local
93 String contextPath=handler.getContextPath();
110 String[] vhosts=handler.getVirtualHosts()
223 Handler handler = (Handler)LazyList.get(list,j); local
233 Handler handler = (Handler)LazyList.get(list,j); local
244 Handler handler = (Handler)LazyList.get(list,j); local
254 Handler handler = (Handler)LazyList.get(list,j); local
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 34 import java.util.logging.Handler;
59 FileHandler handler; field in class:FileHandlerTest
73 handler = new FileHandler();
97 if (null != handler) {
98 handler.close();
169 assertEquals(handler.getEncoding(), "iso-8859-1");
170 assertTrue(handler.getFilter() instanceof MockFilter);
171 assertTrue(handler.getFormatter() instanceof MockFormatter);
172 assertEquals(handler.getLevel(), Level.FINE);
173 assertNotNull(handler.getErrorManager())
505 MockFileHandler handler = new MockFileHandler("%t\/setoutput.log"); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Spdy3.java 122 * Send the next frame to {@code handler}. Returns true unless there are no
125 @Override public boolean nextFrame(Handler handler) throws IOException {
149 readSynStream(handler, flags, length);
153 readSynReply(handler, flags, length);
157 readRstStream(handler, flags, length);
161 readSettings(handler, flags, length);
165 readPing(handler, flags, length);
169 readGoAway(handler, flags, length);
173 readHeaders(handler, flags, length)
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/
netty-codec-http-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.0.CR3/
netty-codec-http2-4.1.0.CR3.jar 
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 23 import android.os.Handler;
49 private Handler handler; field in class:PowerTestActivity
88 handler = new Handler() {
131 handler.sendMessageDelayed(handler.obtainMessage(MSG_TIMEOUT),
162 handler.postDelayed(pageDoneRunner, manualDelay);
179 public Handler getHandler() {
180 return handler;
    [all...]
  /art/test/044-proxy/src/
Clash3.java 28 InvocationHandler handler = new Clash3InvocationHandler(); local
37 handler);
Clash4.java 28 InvocationHandler handler = new Clash4InvocationHandler(); local
38 handler);
  /development/samples/LceDemo/src/com/example/android/lce/
LceDemoActivity.java 26 import android.os.Handler;
43 // Default toolbar action handler.
52 // Create a handler to update text on the screen.
53 final Handler handler = new Handler() { local
67 Message message = handler.obtainMessage();
71 handler.sendMessage(message);
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
ChatManager.java 4 import android.os.Handler;
13 * Handles reading and writing of messages with socket buffers. Uses a Handler
19 private Handler handler; field in class:ChatManager
21 public ChatManager(Socket socket, Handler handler) {
23 this.handler = handler;
38 handler.obtainMessage(WiFiServiceDiscoveryActivity.MY_HANDLE, this)
51 handler.obtainMessage(WiFiServiceDiscoveryActivity.MESSAGE_READ
    [all...]
ClientSocketHandler.java 4 import android.os.Handler;
15 private Handler handler; field in class:ClientSocketHandler
19 public ClientSocketHandler(Handler handler, InetAddress groupOwnerAddress) {
20 this.handler = handler;
31 Log.d(TAG, "Launching the I/O handler");
32 chat = new ChatManager(socket, handler);
GroupOwnerSocketHandler.java 4 import android.os.Handler;
14 * The implementation of a ServerSocket handler. This is used by the wifi p2p
21 private Handler handler; field in class:GroupOwnerSocketHandler
24 public GroupOwnerSocketHandler(Handler handler) throws IOException {
27 this.handler = handler;
50 pool.execute(new ChatManager(socket.accept(), handler));
51 Log.d(TAG, "Launching the I/O handler");
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
UriPatternMatcher.java 66 public void register(final String pattern, final Object handler) {
70 if (handler == null) {
73 this.handlerMap.put(pattern, handler);
102 Object handler = this.handlerMap.get(requestURI); local
103 if (handler == null) {
113 handler = this.handlerMap.get(pattern);
119 return handler;
  /external/autotest/client/common_lib/cros/
interactive_xmlrpc_server.py 24 an XML-RPC server. This is not a stateless handler object, which means that
226 handler = logging.handlers.SysLogHandler(address='/dev/log') variable
229 handler.setFormatter(formatter)
230 logging.getLogger().addHandler(handler)
  /external/autotest/client/cros/bluetooth/
bluetooth_tester_xmlrpc_server.py 23 an XML-RPC server. This is not a stateless handler object, which means that
412 handler = logging.handlers.SysLogHandler(address = '/dev/log') variable in class:BluetoothTesterXmlRpcDelegate
415 handler.setFormatter(formatter)
416 logging.getLogger().addHandler(handler)
  /external/autotest/frontend/client/src/autotest/tko/
Plot.java 75 UncaughtExceptionHandler handler = GWT.getUncaughtExceptionHandler(); local
76 if (handler == null) {
84 handler.onUncaughtException(throwable);

Completed in 403 milliseconds

1 2 3 4 5 6 7 891011>>