Searched defs:sep_count (Results 1 - 2 of 2) sorted by relevance

/forgerock/web-agents-v4/source/
H A Dprocess.c1262 int sep_count = 0; local
1270 * sep_count with a value of:
1276 sep_count = ISVALID(value) ? 0 : char_count(name, '=', NULL);
1277 if (sep_count == 1 && stristr((char *) name, ";Domain=") != NULL) {
1278 sep_count = 3;
1286 if (sep_count == 3) {
1304 am_asprintf(&cookie, "%s%s%s", cookie, name, sep_count == 0 ? "=" : "");
1351 if (cookie != NULL && ISVALID(domain) && sep_count < 2) {
H A Dutility.c442 int sep_count, sep_count_init, j; local
447 sep_count = char_count(query, '&', NULL);
448 if (sep_count > 0) {
449 list = (struct query_attribute *) calloc(++sep_count, sizeof (struct query_attribute));
454 sep_count_init = sep_count;
455 sep_count = 0;
458 struct query_attribute *elm = &list[sep_count++];
476 qsort(list, sep_count, sizeof (struct query_attribute), query_attribute_compare);
479 for (j = 0; j < sep_count; j++) {

Completed in 1635 milliseconds