Home
last modified time | relevance | path

Searched refs:new_req (Results 1 – 25 of 165) sorted by relevance

1234567

/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/libcli/composite/
H A Dcomposite.c155 struct rpc_request *new_req, in composite_continue_rpc() argument
161 new_req->async.private = private_data; in composite_continue_rpc()
165 struct irpc_request *new_req, in composite_continue_irpc() argument
170 new_req->async.fn = continuation; in composite_continue_irpc()
171 new_req->async.private = private_data; in composite_continue_irpc()
180 new_req->async.fn = continuation; in composite_continue_smb()
181 new_req->async.private = private_data; in composite_continue_smb()
185 struct smb2_request *new_req, in composite_continue_smb2() argument
190 new_req->async.fn = continuation; in composite_continue_smb2()
191 new_req->async.private = private_data; in composite_continue_smb2()
[all …]
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/lib/ldb/modules/
H A Dpaged_searches.c55 struct ldb_request *new_req; member
261 ac->new_req = talloc(ac, struct ldb_request); in ps_search()
264 ac->new_req->controls = talloc_array(ac->new_req, struct ldb_control *, 2); in ps_search()
267 ac->new_req->controls[0] = talloc(ac->new_req->controls, struct ldb_control); in ps_search()
278 ac->new_req->controls[0]->critical = 1; in ps_search()
279 ac->new_req->controls[0]->data = control; in ps_search()
281 ac->new_req->controls[1] = NULL; in ps_search()
283 ac->new_req->operation = req->operation; in ps_search()
288 ac->new_req->context = ac; in ps_search()
289 ac->new_req->callback = ps_callback; in ps_search()
[all …]
/dports/net/samba412/samba-4.12.15/source4/dsdb/samdb/ldb_modules/
H A Dlazy_commit.c37 struct ldb_request *new_req; in unlazy_op() local
45 ret = ldb_build_search_req_ex(&new_req, ldb_module_get_ctx(module), in unlazy_op()
54 LDB_REQ_SET_LOCATION(new_req); in unlazy_op()
57 ret = ldb_build_add_req(&new_req, ldb_module_get_ctx(module), req, in unlazy_op()
62 LDB_REQ_SET_LOCATION(new_req); in unlazy_op()
65 ret = ldb_build_mod_req(&new_req, ldb_module_get_ctx(module), req, in unlazy_op()
70 LDB_REQ_SET_LOCATION(new_req); in unlazy_op()
78 LDB_REQ_SET_LOCATION(new_req); in unlazy_op()
87 LDB_REQ_SET_LOCATION(new_req); in unlazy_op()
97 LDB_REQ_SET_LOCATION(new_req); in unlazy_op()
[all …]
H A Dunique_object_sids.c111 struct ldb_request *new_req = NULL; in unique_object_sids_add() local
134 &new_req, in unique_object_sids_add()
146 return ldb_next_request(module, new_req); in unique_object_sids_add()
157 struct ldb_request *new_req = NULL; in unique_object_sids_modify() local
196 &new_req, in unique_object_sids_modify()
208 return ldb_next_request(module, new_req); in unique_object_sids_modify()
/dports/net/samba412/samba-4.12.15/source4/libcli/composite/
H A Dcomposite.c164 struct smbcli_request *new_req, in composite_continue_smb() argument
168 if (composite_nomem(new_req, ctx)) return; in composite_continue_smb()
170 composite_error(ctx, new_req->status); in composite_continue_smb()
173 new_req->async.fn = continuation; in composite_continue_smb()
178 struct smb2_request *new_req, in composite_continue_smb2() argument
182 if (composite_nomem(new_req, ctx)) return; in composite_continue_smb2()
183 if (new_req->state > SMB2_REQUEST_RECV) { in composite_continue_smb2()
184 composite_error(ctx, new_req->status); in composite_continue_smb2()
187 new_req->async.fn = continuation; in composite_continue_smb2()
192 struct nbt_name_request *new_req, in composite_continue_nbt() argument
[all …]
/dports/sysutils/cmogstored/cmogstored-1.8.1/test/
H A Dhttp_dav.rb42 assert_equal 400, http.request(new_req(:Mkcol, "/foo")).code.to_i
48 resp = http.request(new_req(:Delete, "/foo/a"))
52 resp = http.request(new_req(:Delete, "/foo/a"))
55 resp = http.request(new_req(:Delete, "/foo"))
58 resp = http.request(new_req(:Delete, "../foo"))
61 resp = http.request(new_req(:Mkcol, "../foo"))
64 resp = http.request(new_req(:Delete, "/"))
66 resp = http.request(new_req(:Delete, "//"))
/dports/www/py-turbogears2/TurboGears2-2.3.12/tg/controllers/
H A Dwsgiappcontroller.py37 new_req = request.copy()
38 to_pop = len(new_req.path_info.strip('/').split('/')) - len(args)
40 new_req.path_info_pop()
42 if not new_req.path_info: #pragma: no cover
46 new_req.body_file.seek(0)
47 return self.delegate(new_req)
/dports/science/py-dlib/dlib-19.22/dlib/global_optimization/
H A Dglobal_function_search.cpp717 outstanding_function_eval_request new_req; in get_next_x() local
718 new_req.request_id = next_request_id++; in get_next_x()
726 new_req.x(i) = std::round(new_req.x(i)); in get_next_x()
733 outstanding_function_eval_request new_req; in get_next_x() local
734 new_req.request_id = next_request_id++; in get_next_x()
759 new_req.x = tmp.best_x; in get_next_x()
797 new_req.request_id = next_request_id++; in get_next_x()
798 new_req.x = std::move(next_sample); in get_next_x()
808 outstanding_function_eval_request new_req; in get_next_x() local
809 new_req.request_id = next_request_id++; in get_next_x()
[all …]
/dports/science/dlib-cpp/dlib-19.22/dlib/global_optimization/
H A Dglobal_function_search.cpp717 outstanding_function_eval_request new_req; in get_next_x() local
718 new_req.request_id = next_request_id++; in get_next_x()
726 new_req.x(i) = std::round(new_req.x(i)); in get_next_x()
733 outstanding_function_eval_request new_req; in get_next_x() local
734 new_req.request_id = next_request_id++; in get_next_x()
759 new_req.x = tmp.best_x; in get_next_x()
797 new_req.request_id = next_request_id++; in get_next_x()
798 new_req.x = std::move(next_sample); in get_next_x()
808 outstanding_function_eval_request new_req; in get_next_x() local
809 new_req.request_id = next_request_id++; in get_next_x()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/
H A D__init__.py427 new_req = urllib2.HTTPRedirectHandler.redirect_request(
446 if new_req.get_type() == "https":
449 new_req._tunnel_host = new_req.get_host()
450 new_req.set_proxy(req.host, "https")
453 new_req._tunnel_host = None
454 new_req.type = "https"
455 if hasattr(req, "_key_file") and isinstance(new_req, urllib2.Request):
457 new_req._key_file = req._key_file
458 new_req._cert_file = req._cert_file
459 new_req._ca_certs = req._ca_certs
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/fancy_urllib/
H A D__init__.py424 new_req = urllib2.HTTPRedirectHandler.redirect_request(
443 if new_req.get_type() == "https":
446 new_req._tunnel_host = new_req.get_host()
447 new_req.set_proxy(req.host, "https")
450 new_req._tunnel_host = None
451 new_req.type = "https"
452 if hasattr(req, "_key_file") and isinstance(new_req, urllib2.Request):
454 new_req._key_file = req._key_file
455 new_req._cert_file = req._cert_file
456 new_req._ca_certs = req._ca_certs
[all …]
/dports/net/proby/proby-1.0.2/cargo-crates/surf-1.0.3/examples/
H A Dnext_reuse.rs16 let mut new_req = Request::new(Body::empty()); in handle() localVariable
17 *new_req.method_mut() = req.method().clone(); in handle()
18 *new_req.uri_mut() = req.uri().clone(); in handle()
19 *new_req.version_mut() = req.version().clone(); in handle()
20 *new_req.headers_mut() = req.headers().clone(); in handle()
24 futures::future::join(next.run(req, client.clone()), next.run(new_req, client)) in handle()
/dports/www/libwww/w3c-libwww-5.4.2/WinCom/
H A DRequest.cpp71 CRequest * new_req = new CRequest(req->m_pDoc); in precondition_handler() local
75 new_req->PutDocument(source, dest, HT_NO_MATCH); in precondition_handler()
82 CRequest * new_req = new CRequest(req->m_pDoc); in precondition_handler() local
86 new_req->GetDocument(address, 2); in precondition_handler()
122 CRequest * new_req = new CRequest(req->m_pDoc); in check_handler() local
126 new_req->PutDocument(source, dest, HT_DONT_MATCH_ANY); in check_handler()
133 CRequest * new_req = new CRequest(req->m_pDoc); in check_handler() local
137 new_req->PutDocument(source, dest, HT_NO_MATCH); in check_handler()
141 CRequest * new_req = new CRequest(req->m_pDoc); in check_handler() local
145 new_req->GetDocument(address, 2); in check_handler()
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/freedreno/drm/msm/
H A Dmsm_device.c73 struct drm_msm_gem_new new_req = { in msm_device_new() local
83 &new_req, sizeof(new_req))) { in msm_device_new()
85 .handle = new_req.handle, in msm_device_new()
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/graphics/libosmesa/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/graphics/mesa-libs/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/graphics/mesa-dri/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/lang/clover/mesa-21.3.6/src/freedreno/drm/
H A Dmsm_device.c77 struct drm_msm_gem_new new_req = { in msm_device_new() local
87 &new_req, sizeof(new_req))) { in msm_device_new()
89 .handle = new_req.handle, in msm_device_new()
/dports/www/varnish6/varnish-cache-varnish-6.6.2/bin/varnishd/http2/
H A Dcache_http2_hpack.c176 CHECK_OBJ_NOTNULL(h2->new_req, REQ_MAGIC); in h2h_decode_init()
177 CHECK_OBJ_NOTNULL(h2->new_req->http, HTTP_MAGIC); in h2h_decode_init()
182 d->out_l = WS_ReserveAll(h2->new_req->http->ws); in h2h_decode_init()
188 d->out = WS_Reservation(h2->new_req->http->ws); in h2h_decode_init()
208 CHECK_OBJ_NOTNULL(h2->new_req, REQ_MAGIC); in h2h_decode_fini()
210 WS_ReleaseP(h2->new_req->http->ws, d->out); in h2h_decode_fini()
214 VSLb(h2->new_req->http->vsl, SLT_BogoHeader, in h2h_decode_fini()
239 CHECK_OBJ_NOTNULL(h2->new_req, REQ_MAGIC); in h2h_decode_bytes()
240 hp = h2->new_req->http; in h2h_decode_bytes()
/dports/japanese/tiarra/tiarra-20100212/module/Auto/
H A DFetchTitle.pm748 if( !$new_req || $new_req->{response} )
752 $req = $new_req;
1402 if( $new_req )
1404 if( !$new_req->{response} )
1412 $req = $new_req;
1497 $new_req->{old} = $req;
1498 $new_req->{ini_req} = $ini_req;
1499 $new_req->{redirected} = $count;
1524 $new_req->{method} ||= 'POST';
1525 $new_req->{headers}{'Content-Length'} = length($new_req->{content});
[all …]

1234567