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

1 2 3 4 5

  /src/external/gpl3/gcc.old/dist/contrib/
mark_spam.py 24 import requests
34 r = requests.get(u)
61 r = requests.put(u, json = data)
67 r = requests.get(u + '/comment')
74 r = requests.put(u2, json = {'comment_id': comment_id, 'add': ['spam'], 'api_key': api_key})
80 r = requests.get(u + '/attachment')
86 r = requests.put(url, json = {'ids': [attachment_id],
  /src/external/gpl3/gcc/dist/contrib/
mark_spam.py 26 import requests
36 r = requests.get(u)
63 r = requests.put(u, json = data)
69 r = requests.get(u + '/comment')
76 r = requests.put(u2, json = {'comment_id': comment_id, 'add': ['spam'], 'api_key': api_key})
82 r = requests.get(u + '/attachment')
88 r = requests.put(url, json = {'ids': [attachment_id],
  /src/external/bsd/ntp/dist/ntpsnmpd/
ntpSnmpSubagentObject.c 16 * a caching mechanism that reduces the number of requests sent to the
251 netsnmp_request_info *requests)
262 snmp_set_var_typed_value(requests->requestvb, ASN_OCTET_STR,
270 snmp_set_var_typed_value(requests->requestvb, ASN_OCTET_STR,
275 snmp_set_var_typed_value(requests->requestvb, ASN_OCTET_STR,
297 netsnmp_request_info *requests)
306 snmp_set_var_typed_value(requests->requestvb, ASN_OCTET_STR,
311 snmp_set_var_typed_value(requests->requestvb, ASN_OCTET_STR,
333 netsnmp_request_info *requests)
342 snmp_set_var_typed_value(requests->requestvb, ASN_OCTET_STR
    [all...]
  /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/sys/external/bsd/drm2/dist/drm/i915/gt/selftests/
mock_timeline.c 24 INIT_LIST_HEAD(&timeline->requests);
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_scheduler.h 19 for (idx = 0; idx < ARRAY_SIZE((plist)->requests); idx++) \
20 list_for_each_entry(it, &(plist)->requests[idx], sched.link)
27 &(plist)->requests[idx], \
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/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_guc_ct.c 45 spin_lock_init(&ct->requests.lock);
46 INIT_LIST_HEAD(&ct->requests.pending);
47 INIT_LIST_HEAD(&ct->requests.incoming);
48 INIT_WORK(&ct->requests.worker, ct_incoming_request_worker_func);
194 spin_lock_destroy(&ct->requests.lock);
276 return ++ct->requests.next_fence;
500 spin_lock_irqsave(&ct->requests.lock, flags);
501 list_add_tail(&request.link, &ct->requests.pending);
502 spin_unlock_irqrestore(&ct->requests.lock, flags);
535 spin_lock_irqsave(&ct->requests.lock, flags)
    [all...]
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/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/external/bsd/kyua-cli/etc/kyua/
kyua.conf 10 -- requests to be run with non-root permissions.
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_gt_requests.c 29 list_for_each_entry_safe(rq, rn, &tl->requests, link)
198 /* If the device is asleep, we have no requests outstanding */
214 container_of(work, typeof(*gt), requests.retire_work.work);
216 schedule_delayed_work(&gt->requests.retire_work,
223 INIT_DELAYED_WORK(&gt->requests.retire_work, retire_work_handler);
228 cancel_delayed_work(&gt->requests.retire_work);
233 schedule_delayed_work(&gt->requests.retire_work,
240 cancel_delayed_work_sync(&gt->requests.retire_work);
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
  /src/external/gpl3/gcc.old/dist/maintainer-scripts/
bugzilla-close-candidate.py 26 import requests
65 r = requests.get(u, params = query)
82 r = requests.get(u).json()
  /src/external/gpl3/gcc/dist/maintainer-scripts/
bugzilla-close-candidate.py 26 import requests
65 r = requests.get(u, params = query)
82 r = requests.get(u).json()
  /src/lib/libpuffs/
Makefile 13 framebuf.c null.c opdump.c paths.c pnode.c requests.c \
  /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/external/mpl/bind/dist/bin/tests/system/tcp/
tests.sh 37 ntcp10="$(grep "TCP requests received" ns1/named.stats.test$n | tail -1 | awk '{print $1}')"
38 ntcp20="$(grep "TCP requests received" ns2/named.stats.test$n | tail -1 | awk '{print $1}')"
51 ntcp11="$(grep "TCP requests received" ns1/named.stats.test$n | tail -1 | awk '{print $1}')"
52 ntcp21="$(grep "TCP requests received" ns2/named.stats.test$n | tail -1 | awk '{print $1}')"
67 ntcp12="$(grep "TCP requests received" ns1/named.stats.test$n | tail -1 | awk '{print $1}')"
68 ntcp22="$(grep "TCP requests received" ns2/named.stats.test$n | tail -1 | awk '{print $1}')"
  /src/usr.sbin/lpr/common_source/
rmjob.c 65 extern int requests; /* # of spool requests */
255 if (users == 0 && requests == 0)
262 for (r = requ; r < &requ[requests]; r++)
318 for (i = 0; i < requests; i++) {
335 for (i = 0; i < requests; i++) {
displayq.c 68 extern int requests; /* # of spool requests */
224 i < requests && (size_t)(cp - line + 11) < sizeof(line) - 2;
369 if (users == 0 && requests == 0)
382 for (r = requ; r < &requ[requests]; r++)
  /src/external/bsd/ntp/dist/ntpq/
ntpq-opts.def 147 Requests to read and write arbitrary
159 is executed, each of the requests will be sent
184 one attempt to retransmit requests, and will time requests out if
223 requests being sent to a server.
247 in requests to the server to read variables.
275 does not authenticate requests unless
276 they are write requests.
281 to send authentication with all requests it
283 Authenticated requests causes some servers to handl
    [all...]

Completed in 64 milliseconds

1 2 3 4 5