Searched refs:host_len (Results 1 – 10 of 10) sorted by relevance
/netbsd/external/gpl3/gdb/dist/gdbsupport/ |
H A D | netstuff.cc | 94 size_t host_len; in parse_connection_spec_without_prefix() local 99 host_len = last_colon_pos; in parse_connection_spec_without_prefix() 103 host_len = spec.size (); in parse_connection_spec_without_prefix() 105 ret.host_str = spec.substr (0, host_len); in parse_connection_spec_without_prefix()
|
/netbsd/external/gpl3/gdb.old/dist/gdbsupport/ |
H A D | netstuff.cc | 94 size_t host_len; in parse_connection_spec_without_prefix() local 99 host_len = last_colon_pos; in parse_connection_spec_without_prefix() 103 host_len = spec.size (); in parse_connection_spec_without_prefix() 105 ret.host_str = spec.substr (0, host_len); in parse_connection_spec_without_prefix()
|
/netbsd/external/bsd/wpa/dist/src/wps/ |
H A D | wps_upnp.c | 321 size_t host_len, path_len; in subscr_addr_add_url() local 378 host_len = os_strlen(host); in subscr_addr_add_url() 380 alloc_len = host_len + 1 + 1 + path_len + 1; in subscr_addr_add_url() 397 os_memcpy(mem, host, host_len); in subscr_addr_add_url() 398 mem += host_len + 1; in subscr_addr_add_url()
|
/netbsd/external/gpl3/gdb/dist/gdb/ |
H A D | go-exp.y | 1194 int host_len; in lex_one_token() local 1196 &yylval.tsval, &host_len); in lex_one_token() 1199 if (host_len == 0) in lex_one_token() 1201 else if (host_len > 2 && c == '\'') in lex_one_token() 1207 else if (host_len > 1) in lex_one_token()
|
H A D | d-exp.y | 1222 int host_len; in lex_one_token() local 1224 &yylval.tsval, &host_len); in lex_one_token() 1227 if (host_len == 0) in lex_one_token() 1229 else if (host_len > 2 && c == '\'') in lex_one_token() 1235 else if (host_len > 1) in lex_one_token()
|
H A D | c-exp.y | 2920 int host_len; in lex_one_token() local 2922 &yylval.tsval, &host_len); in lex_one_token() 2925 if (host_len == 0) in lex_one_token() 2927 else if (host_len > 2 && c == '\'') in lex_one_token() 2935 else if (host_len > 1) in lex_one_token()
|
/netbsd/external/gpl3/gdb.old/dist/gdb/ |
H A D | go-exp.y | 1194 int host_len; in lex_one_token() local 1196 &yylval.tsval, &host_len); in lex_one_token() 1199 if (host_len == 0) in lex_one_token() 1201 else if (host_len > 2 && c == '\'') in lex_one_token() 1207 else if (host_len > 1) in lex_one_token()
|
H A D | d-exp.y | 1222 int host_len; in lex_one_token() local 1224 &yylval.tsval, &host_len); in lex_one_token() 1227 if (host_len == 0) in lex_one_token() 1229 else if (host_len > 2 && c == '\'') in lex_one_token() 1235 else if (host_len > 1) in lex_one_token()
|
H A D | c-exp.y | 2920 int host_len; in lex_one_token() local 2922 &yylval.tsval, &host_len); in lex_one_token() 2925 if (host_len == 0) in lex_one_token() 2927 else if (host_len > 2 && c == '\'') in lex_one_token() 2935 else if (host_len > 1) in lex_one_token()
|
/netbsd/external/bsd/libpcap/dist/ |
H A D | pcap.c | 1780 size_t host_len; 1823 host_len = (bracketp - 1) - parsep; 1824 host = get_substring(parsep + 1, host_len, ebuf); 1841 host_len = strcspn(parsep, ":"); 1842 host = get_substring(parsep, host_len, ebuf); 1852 parsep = parsep + host_len;
|