HomeSort by relevance Sort by last modified time
    Searched refs:connection (Results 76 - 100 of 754) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/autotest/client/site_tests/platform_AddPrinter/
fake_printer.py 29 (connection, client_address) = self.sock.accept()
34 data = connection.recv(_BUF_SIZE)
42 connection.close()
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
ShutdownTest.java 70 fail("Connection should be closed!");
77 HttpURLConnection connection = (HttpURLConnection) new URL("http://localhost:8092/").openConnection(); local
79 connection.addRequestProperty("Connection", "keep-alive");
80 InputStream in = connection.getInputStream();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
HttpOverSpdyTest.java 77 protected HttpURLConnection connection; field in class:HttpOverSpdyTest
100 connection = client.open(server.getUrl("/foo"));
101 assertContent("ABCDE", connection, Integer.MAX_VALUE);
102 assertEquals(200, connection.getResponseCode());
103 assertEquals("Sweet", connection.getResponseMessage());
114 connection = client.open(server.getUrl("/foo"));
115 assertEquals(-1, connection.getInputStream().read());
123 connection = client.open(server.getUrl("/foo"));
124 connection.setDoOutput(true);
125 connection.setChunkedStreamingMode(0)
    [all...]
  /external/skia/include/third_party/vulkan/vulkan/
vulkan_xcb.h 40 xcb_connection_t* connection; member in struct:VkXcbSurfaceCreateInfoKHR
46 typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, xcb_connection_t* connection, xcb_visualid_t visual_id);
58 xcb_connection_t* connection,
  /external/skqp/include/third_party/vulkan/vulkan/
vulkan_xcb.h 40 xcb_connection_t* connection; member in struct:VkXcbSurfaceCreateInfoKHR
46 typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, xcb_connection_t* connection, xcb_visualid_t visual_id);
58 xcb_connection_t* connection,
  /external/swiftshader/include/vulkan/
vulkan_mir.h 40 MirConnection* connection; member in struct:VkMirSurfaceCreateInfoKHR
46 typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceMirPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, MirConnection* connection);
58 MirConnection* connection);
vulkan_xcb.h 40 xcb_connection_t* connection; member in struct:VkXcbSurfaceCreateInfoKHR
46 typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, xcb_connection_t* connection, xcb_visualid_t visual_id);
58 xcb_connection_t* connection,
  /external/vulkan-headers/include/vulkan/
vulkan_xcb.h 40 xcb_connection_t* connection; member in struct:VkXcbSurfaceCreateInfoKHR
46 typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, xcb_connection_t* connection, xcb_visualid_t visual_id);
58 xcb_connection_t* connection,
  /external/wayland/src/
wayland-private.h 24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
115 wl_connection_destroy(struct wl_connection *connection);
118 wl_connection_copy(struct wl_connection *connection, void *data, size_t size);
121 wl_connection_consume(struct wl_connection *connection, size_t size);
124 wl_connection_flush(struct wl_connection *connection);
127 wl_connection_pending_input(struct wl_connection *connection);
130 wl_connection_read(struct wl_connection *connection);
133 wl_connection_write(struct wl_connection *connection,
137 wl_connection_queue(struct wl_connection *connection,
141 wl_connection_get_fd(struct wl_connection *connection);
    [all...]
  /external/curl/docs/cmdline-opts/
connect-timeout.d 3 Help: Maximum time allowed for connection
6 Maximum time in seconds that you allow curl's connection to take. This only
7 limits the connection phase, so if curl connects within the given period it
  /external/llvm/utils/bugpoint/
RemoteRunSafely.sh 92 connection=$RUSER'@'$RHOST
96 $RCLIENT $connection $RPORT \
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/
VirtualMachineManager.java 29 import com.sun.jdi.connect.spi.Connection;
65 * target VM is launched, and a connection between that VM and the
77 * target VM is launched, and a connection between that VM and the
92 * listen for a connection.</LI>
151 * listen for a connection.
158 * debugger connection.
310 * connection initiated by a target VM
327 * any target VMs which initiated a connection
329 * target VMs to which this manager has initiated a connection.
364 * for which a {@link com.sun.jdi.connect.spi.Connection Connection
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
ThreadInterruptTest.java 85 HttpURLConnection connection = new OkUrlFactory(client).open(server.getUrl("/")); local
86 connection.setDoOutput(true);
87 connection.setFixedLengthStreamingMode(requestBodySize);
88 OutputStream requestBody = connection.getOutputStream();
99 connection.disconnect();
112 HttpURLConnection connection = new OkUrlFactory(client).open(server.getUrl("/")); local
113 InputStream responseBody = connection.getInputStream();
122 connection.disconnect();
  /external/skia/tools/skiaserve/urlhandlers/
ClipAlphaHandler.cpp 22 int ClipAlphaHandler::handle(Request* request, MHD_Connection* connection,
36 return SendOK(connection);
DataHandler.cpp 22 int DataHandler::handle(Request* request, MHD_Connection* connection,
36 return SendData(connection, urlData->fData.get(), urlData->fContentType.c_str());
InfoHandler.cpp 22 int InfoHandler::handle(Request* request, MHD_Connection* connection,
41 return SendData(connection, data.get(), "application/json");
OpBoundsHandler.cpp 22 int OpBoundsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
35 return SendOK(connection);
OpsHandler.cpp 21 int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
35 return SendData(connection, data.get(), "application/json");
  /external/skqp/tools/skiaserve/urlhandlers/
ClipAlphaHandler.cpp 22 int ClipAlphaHandler::handle(Request* request, MHD_Connection* connection,
36 return SendOK(connection);
DataHandler.cpp 22 int DataHandler::handle(Request* request, MHD_Connection* connection,
36 return SendData(connection, urlData->fData.get(), urlData->fContentType.c_str());
InfoHandler.cpp 22 int InfoHandler::handle(Request* request, MHD_Connection* connection,
41 return SendData(connection, data.get(), "application/json");
OpBoundsHandler.cpp 22 int OpBoundsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
35 return SendOK(connection);
OpsHandler.cpp 21 int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
35 return SendData(connection, data.get(), "application/json");
  /external/swiftshader/third_party/LLVM/utils/bugpoint/
RemoteRunSafely.sh 92 connection=$RUSER'@'$RHOST
96 $RCLIENT $connection $RPORT \
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/bugpoint/
RemoteRunSafely.sh 92 connection=$RUSER'@'$RHOST
96 $RCLIENT $connection $RPORT \

Completed in 750 milliseconds

1 2 34 5 6 7 8 91011>>