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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/debugfs/
ro_debug_cmds.ct 9 request do_show_debugfs_params, "Show debugfs parameters",
12 request do_open_filesys, "Open a filesystem",
15 request do_close_filesys, "Close the filesystem",
18 request do_freefrag, "Report free space fragmentation",
21 request do_show_super_stats, "Show superblock statistics",
24 request do_ncheck, "Do inode->name translation",
27 request do_icheck, "Do block->inode translation",
30 request do_chroot, "Change root directory",
33 request do_change_working_dir, "Change working directory",
36 request do_list_dir, "List directory"
    [all...]
debug_cmds.ct 7 request do_show_debugfs_params, "Show debugfs parameters",
10 request do_open_filesys, "Open a filesystem",
13 request do_close_filesys, "Close the filesystem",
16 request do_freefrag, "Report free space fragmentation",
19 request do_features, "Set/print superblock features",
22 request do_dirty_filesys, "Mark the filesystem as dirty",
25 request do_init_filesys, "Initialize a filesystem (DESTROYS DATA)",
28 request do_show_super_stats, "Show superblock statistics",
31 request do_ncheck, "Do inode->name translation",
34 request do_icheck, "Do block->inode translation"
    [all...]
extent_cmds.ct 7 request do_current_node, "Current extent node",
10 request do_root_node, "Goto root extent",
13 request do_last_leaf, "Goto last leaf",
16 request do_first_sib, "Goto first sibling",
19 request do_last_sib, "Goto last sibling",
22 request do_next_sib, "Goto next sibling",
25 request do_prev_sib, "Goto previous sibling",
28 request do_next_leaf, "Goto next leaf",
31 request do_prev_leaf, "Goto previous leaf",
34 request do_next, "Goto next node"
    [all...]
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 10 request do_create_icount, "Create an icount structure",
13 request do_free_icount, "Free an icount structure",
16 request do_fetch, "Fetch an icount entry",
19 request do_increment, "Increment an icount entry",
22 request do_decrement, "Decrement an icount entry",
25 request do_store, "Store an icount entry",
28 request do_get_size, "Get the size of the icount structure",
31 request do_dump, "Dump the icount structure",
34 request do_validate, "Validate the icount structure",
test_rel_cmds.ct 11 request do_brel_ma_create, "Open a memory array block relocation table",
14 request do_brel_free, "Free a block relocation table",
17 request do_brel_put, "Add or modify a block relocation entry",
20 request do_brel_get, "Get a block relocation entry",
23 request do_brel_start_iter, "Start iterating over the block table",
26 request do_brel_next, "Get the next block relocation entry",
29 request do_brel_dump, "Dump the block relocation table",
32 request do_brel_move, "Move an entry in the block relocation table",
35 request do_brel_delete, "Delete an entry in the block relocation table",
42 request do_irel_ma_create, "Open a memory array inode relocation table"
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
RequestCoordinator.java 1 package com.bumptech.glide.request;
4 * An interface for coordinating multiple requests with the same {@link com.bumptech.glide.request.target.Target}.
9 * Returns true if the {@link Request} can display a loaded bitmap.
11 * @param request The {@link Request} requesting permission to display a bitmap.
13 boolean canSetImage(Request request);
16 * Returns true if the {@link Request} can display a placeholder.
18 * @param request The {@link Request} requesting permission to display a placeholder
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestTracker.java 3 import com.bumptech.glide.request.Request;
15 // though the user still would like the request to finish. Weak references are therefore only really functional in
19 private final Set<Request> requests = Collections.newSetFromMap(new WeakHashMap<Request, Boolean>());
23 * Starts tracking the given request.
25 public void runRequest(Request request) {
26 requests.add(request);
28 request.begin()
    [all...]
  /device/generic/goldfish/wifi/ipv6proxy/
router.cpp 26 template<class Request>
27 static void addRouterAttribute(Request& r,
34 // Request struct.(which is undefined because of aliasing)
35 size_t offset = NLMSG_ALIGN(r.hdr.nlmsg_len) - offsetof(Request, buf);
57 struct Request {
61 } request; local
63 memset(&request, 0, sizeof(request));
65 unsigned short msgLen = NLMSG_LENGTH(sizeof(request.msg));
66 // Set up a request to create a new neighbo
89 } request; local
117 } request; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/rpc/
grpc_stub.cc 30 Status GRPCStub::TransferToClient(const TransferToClientRequest* request,
32 return MakeRPC([this, request, response](::grpc::ClientContext* context) {
33 return grpc_stub_->TransferToClient(context, *request, response);
37 Status GRPCStub::TransferToServer(const TransferToServerRequest* request,
39 return MakeRPC([this, request, response](::grpc::ClientContext* context) {
40 return grpc_stub_->TransferToServer(context, *request, response);
44 Status GRPCStub::TransferToInfeed(const TransferToInfeedRequest* request,
46 return MakeRPC([this, request, response](::grpc::ClientContext* context) {
47 return grpc_stub_->TransferToInfeed(context, *request, response);
51 Status GRPCStub::TransferFromOutfeed(const TransferFromOutfeedRequest* request,
    [all...]
  /external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
MainTest.java 18 import com.squareup.okhttp.Request;
30 Request request = fromArgs("http://example.com").createRequest(); local
31 assertEquals("GET", request.method());
32 assertEquals("http://example.com/", request.urlString());
33 assertNull(request.body());
37 Request request = fromArgs("-X", "PUT", "-d", "foo", "http://example.com").createRequest(); local
38 assertEquals("PUT", request.method());
39 assertEquals("http://example.com/", request.urlString())
44 Request request = fromArgs("-d", "foo", "http:\/\/example.com").createRequest(); local
53 Request request = fromArgs("-d", "foo", "-X", "PUT", "http:\/\/example.com").createRequest(); local
62 Request request = fromArgs("-d", "foo", "-H", "Content-Type: application\/json", local
72 Request request = fromArgs("-e", "foo", "http:\/\/example.com").createRequest(); local
80 Request request = fromArgs("-A", "foo", "http:\/\/example.com").createRequest(); local
88 Request request = fromArgs("-H", "If-Modified-Since: Mon, 18 Aug 2014 15:16:06 GMT", local
    [all...]
  /external/volley/src/main/java/com/android/volley/
NetworkDispatcher.java 38 private final BlockingQueue<Request<?>> mQueue;
58 BlockingQueue<Request<?>> queue,
78 private void addTrafficStatsTag(Request<?> request) {
79 // Tag the request (if API >= 14)
81 TrafficStats.setThreadStatsTag(request.getTrafficStatsTag());
105 // This is needed to avoid keeping previous request references alive for an indeterminate amount
109 // Take a request from the queue.
110 Request<?> request = mQueue.take() local
    [all...]
Network.java 22 * Performs the specified request.
24 * @param request Request to process
28 NetworkResponse performRequest(Request<?> request) throws VolleyError;
  /external/grpc-grpc/test/core/security/
oauth2_utils.cc 43 oauth2_request* request = static_cast<oauth2_request*>(arg); local
49 GPR_ASSERT(request->md_array.size == 1);
50 token_slice = GRPC_MDVALUE(request->md_array.md[0]);
56 grpc_credentials_mdelem_array_destroy(&request->md_array);
57 gpr_mu_lock(request->mu);
58 request->is_done = true;
59 request->token = token;
62 grpc_pollset_kick(grpc_polling_entity_pollset(&request->pops), nullptr));
63 gpr_mu_unlock(request->mu);
70 oauth2_request request; local
    [all...]
  /external/toybox/toys/other/
vconfig.c 32 struct vlan_ioctl_args request; local
36 memset(&request, 0, sizeof(struct vlan_ioctl_args));
49 request.u.name_type = i;
50 request.cmd = SET_VLAN_NAME_TYPE_CMD;
51 xioctl(fd, SIOCSIFVLAN, &request);
57 xstrncpy(request.device1, toys.optargs[1], sizeof(request.device1));
60 request.cmd = ADD_VLAN_CMD;
61 if (toys.optargs[2]) request.u.VID = atolx_range(toys.optargs[2], 0, 4094);
62 if (request.u.VID == 1
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
KeyFormatter.java 26 @Override public String format(Key request) {
28 if (request.qualifier().isPresent()) {
29 builder.append(request.qualifier().get());
32 builder.append(request.type()); // TODO(cgruber): Use TypeMirrorFormatter.
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/request/
package-info.java 27 * This package is used to request that a JDI
31 * {@link com.sun.jdi.request.EventRequest} for each kind of
33 * {@link com.sun.jdi.request.BreakpointRequest} is used to request a
36 * {@link com.sun.jdi.request.EventRequestManager}.
46 package com.sun.jdi.request;
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
BaseTarget.java 1 package com.bumptech.glide.request.target;
5 import com.bumptech.glide.request.Request;
19 * {@link com.bumptech.glide.request.target.ViewTarget} or {@link com.bumptech.glide.request.target.ImageViewTarget}
27 private Request request; field in class:BaseTarget
33 public void setRequest(Request request) {
34 this.request = request
    [all...]
SizeReadyCallback.java 1 package com.bumptech.glide.request.target;
  /external/oj-libjdwp/src/share/back/
invoker.c 102 createGlobalRefs(JNIEnv *env, InvokeRequest *request)
115 if ( request->argumentCount > 0 ) {
117 argRefs = jvmtiAllocate((jint)(request->argumentCount*sizeof(jobject)));
122 (void)memset(argRefs, 0, request->argumentCount*sizeof(jobject));
127 saveGlobalRef(env, request->clazz, &clazz);
133 if ( error == JVMTI_ERROR_NONE && request->instance != NULL ) {
134 saveGlobalRef(env, request->instance, &instance);
142 argumentTag = firstArgumentTypeTag(request->methodSignature, &cursor);
143 argument = request->arguments;
145 if ( argIndex > request->argumentCount )
332 InvokeRequest *request; local
351 InvokeRequest *request; local
671 InvokeRequest *request; local
745 InvokeRequest *request; local
832 InvokeRequest *request; local
845 InvokeRequest *request; local
    [all...]
  /external/google-fruit/examples/server/
bar_handler.cpp 26 const Request& request; member in class:BarHandlerImpl
30 INJECT(BarHandlerImpl(const Request& request, const ServerContext& serverContext))
31 : request(request), serverContext(serverContext) {}
34 cout << "BarHandler handling request on server started at " << serverContext.startupTime
35 << " for path: " << request.path << endl;
39 Component<Required<Request, ServerContext>, BarHandler> getBarHandlerComponent() {
foo_handler.cpp 26 const Request& request; member in class:FooHandlerImpl
30 INJECT(FooHandlerImpl(const Request& request, const ServerContext& serverContext))
31 : request(request), serverContext(serverContext) {}
34 cout << "FooHandler handling request on server started at " << serverContext.startupTime
35 << " for path: " << request.path << endl;
39 Component<Required<Request, ServerContext>, FooHandler> getFooHandlerComponent() {
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 46 * A request interceptor that decides about the transport encoding.
65 public void process(final HttpRequest request, final HttpContext context)
67 if (request == null) {
68 throw new IllegalArgumentException("HTTP request may not be null");
70 if (request instanceof HttpEntityEnclosingRequest) {
71 if (request.containsHeader(HTTP.TRANSFER_ENCODING)) {
74 if (request.containsHeader(HTTP.CONTENT_LEN)) {
77 ProtocolVersion ver = request.getRequestLine().getProtocolVersion();
78 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity();
80 request.addHeader(HTTP.CONTENT_LEN, "0")
    [all...]
  /external/autotest/frontend/tko/
views.py 8 def handle_rpc(request):
9 return rpc_handler_obj.handle_rpc_request(request)
12 def handle_jsonp_rpc(request):
13 return rpc_handler_obj.handle_jsonp_rpc_request(request)
16 def handle_csv(request):
17 request_data = rpc_handler_obj.raw_request_data(request)
24 def rpc_documentation(request):
28 def handle_plot(request):
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/event/
Event.java 29 import com.sun.jdi.request.EventRequest;
52 * a cooresponding request and thus will return null.
54 EventRequest request(); method in interface:Event
  /bionic/libc/bionic/
ioctl.cpp 34 int ioctl(int fd, int request, ...) {
36 va_start(ap, request);
39 return __ioctl(fd, request, arg);

Completed in 1192 milliseconds

1 2 3 4 5 6 7 8 91011>>