Home
last modified time | relevance | path

Searched refs:colon_pos (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/
HDlldb-gdbserver.cpp270 const std::string::size_type colon_pos = final_host_and_port.find(':'); in ConnectToRemote() local
271 if (colon_pos != std::string::npos) { in ConnectToRemote()
272 connection_host = final_host_and_port.substr(0, colon_pos); in ConnectToRemote()
273 connection_port = final_host_and_port.substr(colon_pos + 1); in ConnectToRemote()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
HDasan_report.cpp103 char *colon_pos = internal_strchr(p, ':'); in ParseFrameDescription() local
106 if (colon_pos != nullptr && colon_pos < p + len) { in ParseFrameDescription()
107 name_len = colon_pos - p; in ParseFrameDescription()
108 line = (uptr)internal_simple_strtoll(colon_pos + 1, nullptr, 10); in ParseFrameDescription()
/freebsd-11-stable/sys/dev/netmap/
HDnetmap_bdg.c147 int colon_pos = -1; in nm_bdg_name_validate() local
156 colon_pos = i; in nm_bdg_name_validate()
163 if (strlen(name) - colon_pos > IFNAMSIZ) { in nm_bdg_name_validate()
168 return colon_pos; in nm_bdg_name_validate()
/freebsd-11-stable/contrib/gdb/gdb/
HDdbxread.c3099 char *colon_pos = strchr (name, ':'); in process_one_symbol() local
3100 if (colon_pos == NULL) in process_one_symbol()
3103 deftype = colon_pos[1]; in process_one_symbol()
3160 int l = colon_pos - name; in process_one_symbol()