Home
last modified time | relevance | path

Searched refs:comma_pos (Results 1 – 2 of 2) sorted by relevance

/external/dbus/dbus/
Ddbus-address.c431 int comma_pos, equals_pos; in dbus_parse_address() local
433 if (!_dbus_string_find_to (&str, pos, end_pos, ",", &comma_pos)) in dbus_parse_address()
434 comma_pos = end_pos; in dbus_parse_address()
436 if (!_dbus_string_find_to (&str, pos, comma_pos, "=", &equals_pos) || in dbus_parse_address()
437 equals_pos == pos || equals_pos + 1 == comma_pos) in dbus_parse_address()
495 comma_pos - equals_pos - 1, error)) in dbus_parse_address()
527 pos = comma_pos + 1; in dbus_parse_address()
/external/chromium/net/http/
Dhttp_response_headers.cc724 size_t comma_pos = value.find(',', begin_pos); in AddNonCacheableHeaders() local
725 if (comma_pos == std::string::npos) in AddNonCacheableHeaders()
726 comma_pos = value.size(); in AddNonCacheableHeaders()
727 size_t end = comma_pos; in AddNonCacheableHeaders()
739 begin_pos = comma_pos + 1; in AddNonCacheableHeaders()