HomeSort by: relevance | last modified time | path
    Searched defs:requests (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/external/bsd/libpcap/dist/
rpcap-protocol.c 149 static const char *requests[] = variable
164 #define NUM_REQ_TYPES (sizeof requests / sizeof requests[0])
194 return requests[type];
  /src/external/mpl/bind/dist/bin/tests/system/statschannel/
tests_json.py 23 requests = pytest.importorskip("requests") variable
51 r = requests.get(
61 r = requests.get(
tests_xml.py 24 requests = pytest.importorskip("requests") variable
51 r = requests.get(
76 r = requests.get(
89 key = "dns-{}-requests-sizes-received-{}".format(proto, ip)
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_guc_ct.h 44 * for the H2G and G2H requests sent and received through the buffers.
56 spinlock_t lock; /* protects pending requests list */
57 struct list_head pending; /* requests waiting for response */
59 struct list_head incoming; /* incoming requests */
60 struct work_struct worker; /* handler for incoming requests */
61 } requests; member in struct:intel_guc_ct
  /src/usr.sbin/lpr/lpq/
lpq.c 69 int requests; /* # of spool requests */ variable
121 if (requests >= MAXREQUESTS)
122 fatal("too many requests");
123 requ[requests++] = atoi(*argv);
  /src/usr.sbin/lpr/lprm/
lprm.c 75 int requests; /* # of spool requests */ variable
140 if (requests >= MAXREQUESTS)
141 fatal("Too many requests");
142 requ[requests++] = atoi(arg);
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_timeline_types.h 29 struct mutex mutex; /* protects the flow of requests */
33 * How many requests are in flight or may be under construction.
38 * context so that we can issue requests at any time without having
59 * List of breadcrumbs associated with GPU requests currently
62 struct list_head requests; member in struct:intel_timeline
intel_gt_types.h 52 * but this means that requests will finish and never
55 * fires, go retire requests.
58 } requests; member in struct:intel_gt
70 * userspace requests? Whilst idle, we allow runtime power
intel_gt.c 399 struct i915_request *requests[I915_NUM_ENGINES] = {}; local
447 requests[id] = i915_request_get(rq);
460 for (id = 0; id < ARRAY_SIZE(requests); id++) {
465 rq = requests[id];
523 for (id = 0; id < ARRAY_SIZE(requests); id++) {
527 rq = requests[id];
intel_engine_types.h 229 * When we add requests into the queue, or adjust the priority of
230 * executing requests, we compute the maximum priority of those
231 * pending requests. We can then use this value to determine if
232 * we need to preempt the executing requests to service the queue.
241 * @queue: queue of requests, in priority lists
312 struct list_head requests; member in struct:intel_engine_cs::__anon4979
313 struct list_head hold; /* ready requests, but on hold */
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_priolist_types.h 42 * Requests containing performance queries must not be preempted by
55 struct list_head requests[I915_PRIORITY_COUNT]; member in struct:i915_priolist
  /src/external/bsd/wpa/dist/src/radius/
radius_client.h 87 * requests - radiusAuthClientAccessRequests or radiusAccClientRequests
89 u32 requests; member in struct:hostapd_radius_server
182 * requests. If this interval is set (non-zero), the primary server
  /src/external/bsd/wpa/dist/src/wps/
http_server.c 36 struct http_request *requests; member in struct:http_server
67 wpa_printf(MSG_DEBUG, "HTTP: Too many concurrent requests");
101 r = srv->requests;
107 srv->requests = r->next;
222 req->next = srv->requests;
223 srv->requests = req;
305 http_request_free_all(srv->requests);
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
i915_request.c 289 struct i915_request **requests; local
297 * At its heart, we simply create oodles of requests running across
303 requests = kcalloc(total, sizeof(*requests), GFP_KERNEL);
304 if (!requests)
354 requests[n] = i915_request_get(rq);
376 struct i915_request *rq = requests[count - 1];
391 struct i915_request *rq = requests[n];
420 kfree(requests);
439 * Smoketest our breadcrumb/signal handling for requests across multipl
    [all...]
  /src/usr.sbin/lpr/lpd/
lpd.c 120 int lflag; /* log requests flag */
418 int requests; /* # of spool requests */ variable
453 syslog(LOG_INFO, "%s requests %s %s",
495 if (requests >= MAXREQUESTS)
496 fatal("Too many requests");
497 requ[requests++] = atoi(cp);
531 if (requests >= MAXREQUESTS)
532 fatal("Too many requests");
533 requ[requests++] = atoi(cp)
    [all...]
  /src/external/bsd/libevent/dist/
http-internal.h 6 * This header file contains definitions for dealing with HTTP requests
73 #define EVHTTP_CON_OUTGOING 0x0002 /* multiple requests possible */
93 TAILQ_HEAD(evcon_requestq, evhttp_request) requests; member in struct:evhttp_connection
177 /* resets the connection; can be reused for more requests */
  /src/external/bsd/ntp/dist/sntp/libevent/
http-internal.h 7 * This header file contains definitions for dealing with HTTP requests
74 #define EVHTTP_CON_OUTGOING 0x0002 /* multiple requests possible */
94 TAILQ_HEAD(evcon_requestq, evhttp_request) requests; member in struct:evhttp_connection
178 /* resets the connection; can be reused for more requests */
  /src/external/gpl3/gdb/dist/sim/frv/
cache.h 38 /* The cache pipeline requests. */
84 /* The status of flush requests. */
91 /* Communicate status of requests to the caller. */
124 FRV_CACHE_REQUEST *requests; member in struct:__anon19345
  /src/external/gpl3/gdb.old/dist/sim/frv/
cache.h 38 /* The cache pipeline requests. */
84 /* The status of flush requests. */
91 /* Communicate status of requests to the caller. */
124 FRV_CACHE_REQUEST *requests; member in struct:__anon22084
  /src/external/mpl/bind/dist/lib/dns/
request.c 61 dns_requestlist_t *requests; member in struct:dns_requestmgr
143 requestmgr->requests = isc_mem_cget(requestmgr->mctx, nloops,
144 sizeof(requestmgr->requests[0]));
146 ISC_LIST_INIT(requestmgr->requests[i]);
179 ISC_LIST_FOREACH_SAFE(requestmgr->requests[tid], request, link, next) {
211 * there will be no new requests added to the lists.
239 INSIST(ISC_LIST_EMPTY(requestmgr->requests[i]));
241 isc_mem_cput(requestmgr->mctx, requestmgr->requests, nloops,
242 sizeof(requestmgr->requests[0]));
512 ISC_LIST_APPEND(requestmgr->requests[request->tid], request, link)
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
request.c 67 dns_requestlist_t requests; member in struct:dns_requestmgr
196 ISC_LIST_INIT(requestmgr->requests);
258 for (request = ISC_LIST_HEAD(requestmgr->requests);
264 INSIST(ISC_LIST_EMPTY(requestmgr->requests));
306 INSIST(ISC_LIST_HEAD(requestmgr->requests) == NULL);
353 ISC_LIST_HEAD(requestmgr->requests) == NULL);
819 ISC_LIST_APPEND(requestmgr->requests, request, link);
848 ISC_LIST_UNLINK(requestmgr->requests, request, link);
1005 ISC_LIST_APPEND(requestmgr->requests, request, link);
1034 ISC_LIST_UNLINK(requestmgr->requests, request, link)
    [all...]
  /src/sys/arch/i386/include/
multiboot2.h 124 multiboot_uint32_t requests[0]; member in struct:multiboot_header_tag_information_request
  /src/sys/external/bsd/dwc2/dist/
dwc2_hcd.h 45 * The Host Controller Driver (HCD) is responsible for translating requests
93 * is not finished flushing queued requests
103 * @requests: Number of requests issued for this channel since it was
158 u8 requests; member in struct:dwc2_host_chan
  /src/crypto/external/bsd/openssh/dist/
sftp-client.c 67 /* Default number of concurrent xfer requests (fix sftp.1 scp.1 if changed) */
99 /* Tracks in-progress requests during file transfers */
106 TAILQ_HEAD(requests, request);
113 request_enqueue(struct requests *requests, u_int id, size_t len,
122 TAILQ_INSERT_TAIL(requests, req, tq);
127 request_find(struct requests *requests, u_int id)
131 for (req = TAILQ_FIRST(requests);
1604 struct requests requests local
2457 struct requests requests; local
    [all...]
  /src/external/gpl2/lvm2/dist/daemons/dmeventd/
dmeventd.c 1363 } requests[] = { local
1374 for (req = requests; req < requests + sizeof(requests); req++)

Completed in 53 milliseconds

1 2