Searched refs:ndots (Results 1 – 7 of 7) sorted by relevance
/external/libevent/include/event2/ |
D | dns_compat.h | 315 void evdns_search_ndots_set(const int ndots);
|
D | dns.h | 523 void evdns_base_search_ndots_set(struct evdns_base *base, const int ndots);
|
/external/libevent/ |
D | evdns.c | 3047 int ndots; member 3072 state->ndots = 1; in search_state_new() 3150 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) { in evdns_base_search_ndots_set() argument 3154 base->global_search_state->ndots = ndots; in evdns_base_search_ndots_set() 3158 evdns_search_ndots_set(const int ndots) { in evdns_search_ndots_set() argument 3159 evdns_base_search_ndots_set(current_base, ndots); in evdns_search_ndots_set() 3217 if (string_num_dots(name) >= base->global_search_state->ndots) { in search_request_new() 3268 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) { in search_try_next() 3450 const int ndots = strtoint(val); in evdns_base_set_option_impl() local 3451 if (ndots == -1) return -1; in evdns_base_set_option_impl() [all …]
|
/external/iproute2/examples/ |
D | dhcp-client-script | 313 echo options ndots:1 >> /etc/resolv.conf.dhcp
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1925 int ndots = count_from_dots(tree); in validate_import_from() local 1926 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name); in validate_import_from() 1927 int offset = ndots + havename; in validate_import_from() 1932 && (!havename || validate_dotted_name(CHILD(tree, ndots + 1))) in validate_import_from()
|
/external/python/cpython3/Python/ |
D | ast.c | 3311 int idx, ndots = 0; in ast_for_import_stmt() local 3326 ndots += 3; in ast_for_import_stmt() 3331 ndots++; in ast_for_import_stmt() 3381 return ImportFrom(modname, aliases, ndots, lineno, col_offset, in ast_for_import_stmt()
|
/external/python/cpython2/Python/ |
D | ast.c | 2569 int idx, ndots = 0; in ast_for_import_stmt() local 2585 ndots++; in ast_for_import_stmt() 2635 return ImportFrom(modname, aliases, ndots, lineno, col_offset, in ast_for_import_stmt()
|