Home
last modified time | relevance | path

Searched refs:hint (Results 1 – 24 of 24) sorted by relevance

/components/dfs/dfs_v1/filesystems/nfs/rpc/
A Dclnt_generic.c57 struct addrinfo hint, *res = NULL; in clnt_create() local
62 memset(&hint, 0, sizeof(hint)); in clnt_create()
63 ret = getaddrinfo(hostname, NULL, &hint, &res); in clnt_create()
/components/mm/
A Dmm_aspace.c469 varea = _varea_create(hint->prefer, hint->map_size); in _insert_new_varea()
519 alloc_va = hint->prefer; in _varea_install()
530 _find_free(aspace, hint->prefer, hint->map_size, hint->limit_start, in _varea_install()
531 hint->limit_range_size, hint->flags); in _varea_install()
759 if (!aspace || !hint || !hint->limit_range_size || !hint->map_size) in _mm_aspace_map_phy()
764 else if (_not_align(hint->prefer, hint->map_size, ARCH_PAGE_MASK)) in _mm_aspace_map_phy()
769 else if (_not_in_range(hint->flags, hint->limit_start, hint->limit_range_size, aspace->start, in _mm_aspace_map_phy()
771 _not_in_range(hint->flags, hint->prefer, hint->map_size, aspace->start, in _mm_aspace_map_phy()
813 if (hint) in rt_aspace_map_phy()
815 rt_varea_t varea = _varea_create(hint->prefer, hint->map_size); in rt_aspace_map_phy()
[all …]
A Dmm_fault.h78 enum rt_mm_hint_prefetch hint; member
107 res->hint = MM_FAULT_HINT_PREFETCH_NONE; in rt_mm_fault_res_init()
A Dmm_kmem.c60 struct rt_mm_va_hint hint = {.flags = MMF_MAP_FIXED, in rt_kmem_map_phy() local
66 err = rt_aspace_map_phy(&rt_kernel_space, &hint, attr, MM_PA_TO_OFF(pa), &va); in rt_kmem_map_phy()
A Dioremap.c46 struct rt_mm_va_hint hint = { in _ioremap_type() local
68 err = rt_aspace_map_phy(&rt_kernel_space, &hint, attr, pa_off, (void **)&v_addr); in _ioremap_type()
A Dmm_aspace.h89 void (*hint_free)(rt_mm_va_hint_t hint);
193 int rt_aspace_map_phy(rt_aspace_t aspace, rt_mm_va_hint_t hint, rt_size_t attr,
198 rt_mm_va_hint_t hint, rt_size_t attr, rt_size_t pa_off,
A Dmm_memblock.c386 struct rt_mm_va_hint hint = {.flags = MMF_MAP_FIXED, in rt_memblock_setup_memory_environment() local
392 …rt_aspace_map_phy(&rt_kernel_space, &hint, MMU_MAP_K_RWCB, (reg.start + PV_OFFSET) >> MM_PAGE_SHIF… in rt_memblock_setup_memory_environment()
A Dmm_page.c89 static void hint_free(rt_mm_va_hint_t hint) in hint_free() argument
91 hint->flags = MMF_MAP_FIXED; in hint_free()
92 hint->limit_start = rt_kernel_space.start; in hint_free()
93 hint->limit_range_size = rt_kernel_space.size; in hint_free()
94 hint->prefer = rt_mpr_start; in hint_free()
/components/net/lwip/lwip-2.0.3/src/apps/ping/
A Dping.c148 struct addrinfo hint, *res = NULL; in ping() local
160 rt_memset(&hint, 0, sizeof(hint)); in ping()
162 if (lwip_getaddrinfo(target_name, NULL, &hint, &res) != 0) in ping()
/components/net/lwip/lwip-1.4.1/src/apps/ping/
A Dping.c148 struct addrinfo hint, *res = NULL; in ping() local
160 memset(&hint, 0, sizeof(hint)); in ping()
162 if (lwip_getaddrinfo(target_name, NULL, &hint, &res) != 0) in ping()
/components/net/lwip/lwip-2.1.2/src/apps/ping/
A Dping.c148 struct addrinfo hint, *res = NULL; in ping() local
160 memset(&hint, 0, sizeof(hint)); in ping()
162 if (lwip_getaddrinfo(target_name, NULL, &hint, &res) != 0) in ping()
/components/net/lwip/lwip-1.4.1/src/include/lwip/
A Dnetif.h327 #define NETIF_SET_HWADDRHINT(netif, hint) ((netif)->addr_hint = (hint)) argument
329 #define NETIF_SET_HWADDRHINT(netif, hint) argument
/components/net/lwip/lwip-2.0.3/src/include/lwip/
A Dnetif.h473 #define NETIF_SET_HWADDRHINT(netif, hint) ((netif)->addr_hint = (hint)) argument
475 #define NETIF_SET_HWADDRHINT(netif, hint) argument
/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Detharp.c121 #define ETHARP_SET_HINT(netif, hint) if (((netif) != NULL) && ((netif)->addr_hint != NULL)) \ argument
122 *((netif)->addr_hint) = (hint);
124 #define ETHARP_SET_HINT(netif, hint) (etharp_cached_entry = (hint)) argument
/components/net/lwip/port/
A Dethernetif.c225 struct addrinfo hint, *res = RT_NULL; in lwip_netdev_ping() local
234 rt_memset(&hint, 0x00, sizeof(hint)); in lwip_netdev_ping()
236 if (lwip_getaddrinfo(host, RT_NULL, &hint, &res) != 0) in lwip_netdev_ping()
/components/net/lwip/lwip-1.4.1/src/netif/
A Detharp.c135 #define ETHARP_SET_HINT(netif, hint) if (((netif) != NULL) && ((netif)->addr_hint != NULL)) \ argument
136 *((netif)->addr_hint) = (hint);
138 #define ETHARP_SET_HINT(netif, hint) (etharp_cached_entry = (hint)) argument
/components/lwp/
A Dlwp_user_mm.c361 struct rt_mm_va_hint hint = {.flags = 0, in lwp_map_user_phy() local
367 hint.flags |= MMF_MAP_FIXED; in lwp_map_user_phy()
372 rt_aspace_map_phy(lwp->aspace, &hint, attr, MM_PA_TO_OFF(map_pa), (void **)&va); in lwp_map_user_phy()
/components/lwp/terminal/freebsd/
A Dtty_pts.c445 static int pts_kqops_read_event(struct knote *kn, long hint) in pts_kqops_read_event() argument
472 static int pts_kqops_write_event(struct knote *kn, long hint) in pts_kqops_write_event() argument
/components/net/lwip/lwip-2.0.3/doc/
A Dsys_arch.txt54 other error will provide a hint what went wrong, but except for assertions,
101 other error will provide a hint what went wrong, but except for assertions,
137 other error will provide a hint what went wrong, but except for assertions,
/components/net/lwip/lwip-1.4.1/doc/
A Dsys_arch.txt55 other error will provide a hint what went wrong, but except for assertions,
104 other error will provide a hint what went wrong, but except for assertions,
/components/dfs/dfs_v2/src/
A Ddfs_file_mmap.c119 static void hint_free(rt_mm_va_hint_t hint) in hint_free() argument
/components/net/lwip/lwip-1.4.1/
A DCHANGELOG3047 that must be initialized correctly by the driver (hint: 6 for Ethernet MAC).
/components/net/lwip/lwip-2.0.3/
A DCHANGELOG4003 that must be initialized correctly by the driver (hint: 6 for Ethernet MAC).
/components/net/lwip/lwip-2.1.2/
A DCHANGELOG4256 that must be initialized correctly by the driver (hint: 6 for Ethernet MAC).

Completed in 44 milliseconds