Lines Matching refs:protocol_end
13065 * `--------------------------------------------- protocol_end
13070 if (protocol_end == url_components::omitted) {
13073 if (protocol_end < index) {
13076 index = protocol_end;
13135 answer.append("\t\"protocol_end\":\"");
13136 helpers::encode_json(std::to_string(protocol_end), back);
13281 uint32_t new_difference = u.components.protocol_end - components.protocol_end;
13283 buffer.erase(0, components.protocol_end);
13285 components.protocol_end = u.components.protocol_end;
13316 uint32_t(new_scheme_with_colon.size()) - components.protocol_end;
13321 buffer.erase(0, components.protocol_end);
13324 components.protocol_end += new_difference;
13347 uint32_t(new_scheme.size()) - components.protocol_end + 1;
13353 buffer.erase(0, components.protocol_end);
13356 components.protocol_end = uint32_t(new_scheme.size() + 1);
13816 return helpers::substring(buffer, components.protocol_end + 2,
13918 return helpers::substring(buffer, 0, components.protocol_end);
13979 answer.append("\t\"protocol_end\":");
13980 answer.append(convert_offset_to_string(components.protocol_end));
14410 if (components.protocol_end != buffer.size()) {
14411 line1[components.protocol_end] = '|';
14499 if (components.protocol_end != buffer.size()) {
14500 line8[components.protocol_end] = '`';
14501 line1[components.protocol_end] = ' ';
14503 for (size_t i = components.protocol_end + 1; i < line8.size(); i++) {
14506 line8.append(" protocol_end ");
14507 line8.append(std::to_string(components.protocol_end));
14518 if (components.protocol_end > buffer.size()) {
14519 answer.append("warning: protocol_end overflows\n");
14557 * `--------------------------------------------- protocol_end
14559 if (components.protocol_end == url_components::omitted) {
14560 ada_log("url_aggregator::validate omitted protocol_end \n", to_diagram());
14580 if (components.protocol_end > buffer.size()) {
14581 ada_log("url_aggregator::validate protocol_end overflow \n", to_diagram());
14602 if (components.protocol_end > 0) {
14603 if (buffer[components.protocol_end - 1] != ':') {
14612 components.username_end > components.protocol_end + 2) {
14633 if (components.host_start == components.protocol_end + 2) {
14634 if (buffer[components.protocol_end] != '/' ||
14635 buffer[components.protocol_end + 1] != '/') {
14643 if (components.host_start > components.protocol_end &&
14946 * `--------------------------------------------- protocol_end
14948 uint32_t protocol_end;