/curl/src/ |
H A D | tool_formparse.c | 40 static struct tool_mime *tool_mime_new(struct tool_mime *parent, in tool_mime_new() argument 47 m->parent = parent; in tool_mime_new() 48 if(parent) { in tool_mime_new() 49 m->prev = parent->subparts; in tool_mime_new() 50 parent->subparts = m; in tool_mime_new() 58 return tool_mime_new(parent, TOOLMIME_PARTS); in tool_mime_new_parts() 61 static struct tool_mime *tool_mime_new_data(struct tool_mime *parent, in tool_mime_new_data() argument 69 m = tool_mime_new(parent, TOOLMIME_DATA); in tool_mime_new_data() 91 m = tool_mime_new(parent, TOOLMIME_FILE); in tool_mime_new_filedata() 143 m = tool_mime_new(parent, TOOLMIME_STDIN); in tool_mime_new_filedata() [all …]
|
H A D | tool_formparse.h | 43 struct tool_mime *parent; /* Parent item. */ member
|
/curl/docs/libcurl/opts/ |
H A D | CURLMOPT_PUSHFUNCTION.md | 26 int curl_push_callback(CURL *parent, 46 *parent* is the handle of the stream on which this push arrives. The new 47 handle has been duplicated from the parent, meaning that it has gotten all its 90 parent stream making it get closed with an error. (Added in 7.72.0) 108 int push_callback(CURL *parent,
|
H A D | CURLMOPT_PUSHDATA.md | 47 int push_callback(CURL *parent,
|
H A D | CURLOPT_STREAM_WEIGHT.md | 43 Streams with the same parent should be allocated resources proportionally
|
H A D | CURLOPT_STREAM_DEPENDS_E.md | 40 all the dependencies of the new parent stream to become dependent on the
|
/curl/lib/ |
H A D | mime.h | 102 curl_mimepart *parent; /* Parent part. */ member 111 curl_mime *parent; /* Parent mime structure. */ member
|
H A D | mime.c | 1151 if(mime && mime->parent) { in mime_subparts_free() 1152 mime->parent->freefunc = NULL; /* Be sure we will not be called again. */ in mime_subparts_free() 1163 if(mime && mime->parent) { in mime_subparts_unbind() 1166 mime->parent = NULL; in mime_subparts_unbind() 1291 mime->parent = NULL; in curl_mime_init() 1329 part->parent = mime; in curl_mime_addpart() 1550 if(subparts->parent) in Curl_mime_set_subparts() 1554 root = part->parent; in Curl_mime_set_subparts() 1556 while(root->parent && root->parent->parent) in Curl_mime_set_subparts() 1557 root = root->parent->parent; in Curl_mime_set_subparts() [all …]
|
H A D | url.h | 90 CURLcode Curl_data_priority_add_child(struct Curl_easy *parent,
|
H A D | url.c | 3870 DEBUGASSERT(child->set.priority.parent == parent); 3882 child->set.priority.parent = 0; 3890 if(child->set.priority.parent) { 3894 if(parent) { 3907 node->data->set.priority.parent = child; 3916 *tail = parent->set.priority.children; 3917 parent->set.priority.children = 0; 3920 tail = &parent->set.priority.children; 3930 child->set.priority.parent = parent; 3943 if(data->set.priority.parent) [all …]
|
H A D | http2.c | 1872 struct h2_stream_ctx *depstream = H2_STREAM_CTX(ctx, prio->parent); in h2_pri_spec() 1896 (data->set.priority.parent != data->state.priority.parent)) ) { in h2_progress_egress()
|
H A D | urldata.h | 1149 struct Curl_easy *parent; member
|
/curl/docs/examples/ |
H A D | http2-pushinmemory.c | 92 static int server_push_callback(CURL *parent, in server_push_callback() argument 100 (void)parent; /* we have no use for this */ in server_push_callback()
|
H A D | http2-serverpush.c | 161 static int server_push_callback(CURL *parent, in server_push_callback() argument 174 (void)parent; /* we have no use for this */ in server_push_callback()
|
/curl/tests/http/clients/ |
H A D | h2-serverpush.c | 154 static int server_push_callback(CURL *parent, in server_push_callback() argument 168 (void)parent; /* we have no use for this */ in server_push_callback()
|
/curl/tests/http/testenv/ |
H A D | certs.py | 378 …def _make_x509_name(org_name: Optional[str] = None, common_name: Optional[str] = None, parent: x50… 381 oid = NameOID.ORGANIZATIONAL_UNIT_NAME if parent else NameOID.ORGANIZATION_NAME 385 if parent: 386 name_pieces.extend(list(parent)) 511 subject = TestCA._make_x509_name(org_name=name, parent=issuer.subject if issuer else None) 528 subject = TestCA._make_x509_name(common_name=name, parent=issuer.subject) 546 subject = TestCA._make_x509_name(common_name=name, parent=issuer.subject)
|
/curl/tests/data/ |
H A D | test781 | 55 HSTS update expiry, with parent includeSubDomains domain present
|
/curl/docs/libcurl/ |
H A D | curl_pushheader_bynum.md | 44 static int push_cb(CURL *parent,
|
H A D | curl_pushheader_byname.md | 46 static int push_cb(CURL *parent,
|
H A D | libcurl-tutorial.md | 1253 it as a source to the parent multi-part using function 1255 bound to its parent multi-part, a nth-level multi-part belongs to it and
|
/curl/include/curl/ |
H A D | multi.h | 457 typedef int (*curl_push_callback)(CURL *parent,
|
/curl/ |
H A D | CMakeLists.txt | 30 # variables may be defined by the parent project, ideally in the "extra"
|