Searched refs:url_c (Results 1 – 1 of 1) sorted by relevance
/haiku/src/kits/support/ |
H A D | Url.cpp | 1010 const char *url_c = url.String(); in _ExplodeUrlString() local 1022 int32 end_protocol = char_offset_until_fn_false(url_c, length, in _ExplodeUrlString() 1026 SetProtocol(BString(&url_c[offset], end_protocol - offset)); in _ExplodeUrlString() 1057 if (strncmp(&url_c[offset], "//", 2) == 0) { in _ExplodeUrlString() 1071 int end_authority = char_offset_until_fn_false(url_c, length, in _ExplodeUrlString() 1073 SetAuthority(BString(&url_c[offset], end_authority - offset)); in _ExplodeUrlString() 1081 int end_path = char_offset_until_fn_false(url_c, length, offset, in _ExplodeUrlString() 1083 BString path(&url_c[offset], end_path - offset); in _ExplodeUrlString() 1096 if (url_c[offset] == '?') { in _ExplodeUrlString() 1098 int end_request = char_offset_until_fn_false(url_c, length, in _ExplodeUrlString() [all …]
|