Home | History | Annotate | Download | only in microhttpd

Lines Matching refs:kind

120  * @param kind types of values to iterate over
129 enum MHD_ValueKind kind,
139 if (0 != (pos->kind & kind))
144 kind, pos->header, pos->value)))
168 * @param kind kind of the value
178 enum MHD_ValueKind kind,
189 pos->kind = kind;
208 * values match the kind, return any one of them.
211 * @param kind what kind of value are we looking for
218 enum MHD_ValueKind kind, const char *key)
225 if ((0 != (pos->kind & kind)) &&
650 enum MHD_ValueKind kind;
690 kind = MHD_HEADER_KIND;
703 kind = MHD_FOOTER_KIND;
799 (which is kind of more sane, because if some crazy
839 if ( (pos->kind == kind) &&
892 if ( (pos->kind == kind) &&
1170 * @param kind kind of the value
1177 char *key, char *value, enum MHD_ValueKind kind)
1180 kind,
1199 * @param kind header kind to use for adding to the connection
1205 parse_arguments (enum MHD_ValueKind kind,
1229 kind);
1242 return connection_add_header (connection, args, equals, kind);
1259 kind))
1267 so we got regular 'foo=value&bar...'-kind of argument */
1278 if (MHD_NO == connection_add_header (connection, args, equals, kind))
1810 * @param kind if the line is complete, add a header
1811 * of the given kind
1816 char *line, enum MHD_ValueKind kind)
1860 last, connection->colon, kind)))