/Zephyr-latest/include/zephyr/net/ |
D | ptp_time.h | 130 uint64_t second; member 173 uint64_t second; member 216 if (ts->second >= NET_TIME_SEC_MAX) { in net_ptp_time_to_ns() 220 return ((int64_t)ts->second * NSEC_PER_SEC) + ts->nanosecond; in net_ptp_time_to_ns() 237 ts.second = nsec / NSEC_PER_SEC; in ns_to_net_ptp_time()
|
/Zephyr-latest/samples/net/sockets/echo_client/src/ |
D | vlan.c | 17 struct net_if *second; member 33 if (!ud->second) { in iface_cb() 34 ud->second = iface; in iface_cb() 106 ret = setup_iface(iface, ud.second, in init_vlan() 116 net_if_up(ud.second); in init_vlan()
|
/Zephyr-latest/samples/net/mdns_responder/src/ |
D | vlan.c | 17 struct net_if *second; member 33 if (!user_data->second) { in iface_cb() 34 user_data->second = iface; in iface_cb() 131 ret = setup_iface(iface, user_data.second, in init_vlan() 142 net_if_up(user_data.second); in init_vlan()
|
/Zephyr-latest/samples/net/sockets/txtime/src/ |
D | vlan.c | 17 struct net_if *second; member 33 if (!ud->second) { in iface_cb() 34 ud->second = iface; in iface_cb() 126 ret = setup_iface(iface, ud.second, in init_vlan() 136 net_if_up(ud.second); in init_vlan()
|
/Zephyr-latest/samples/boards/nxp/s32/netc/ |
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface"
|
/Zephyr-latest/lib/hash/ |
D | hash_map_cxx.cpp | 29 it->value = it2->second; in sys_hashmap_cxx_iter_next() 58 cb(kv.first, kv.second, cookie); in sys_hashmap_cxx_clear() 82 *old_value = it->second; in sys_hashmap_cxx_insert() 83 it->second = value; in sys_hashmap_cxx_insert() 113 *value = it->second; in sys_hashmap_cxx_remove() 143 *value = it->second; in sys_hashmap_cxx_get()
|
/Zephyr-latest/soc/nxp/lpc/lpc54xxx/ |
D | Kconfig | 35 bool "LPC54114 Cortex-M0 second core" 37 Driver for second core startup 41 hex "Address the second core will boot at" 44 This is the address the second core will boot from. Additionally this 51 # Move the LMA address of second core into flash
|
/Zephyr-latest/samples/net/sockets/echo_server/src/ |
D | vlan.c | 17 struct net_if *second; member 39 if (!ud->second) { in iface_cb() 40 ud->second = iface; in iface_cb() 127 ret = setup_iface(ud.eth, ud.second, in init_vlan()
|
/Zephyr-latest/samples/net/mdns_responder/ |
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface" 24 int "VLAN tag for second interface"
|
/Zephyr-latest/samples/net/vlan/src/ |
D | main.c | 20 struct net_if *second; member 36 ud->second = iface; in iface_cb() 138 ret = setup_iface(iface, ud.second, in init_app() 149 net_if_up(ud.second); in init_app()
|
/Zephyr-latest/samples/net/lldp/src/ |
D | main.c | 38 struct net_if *second; member 54 if (!ud->second) { in iface_cb() 55 ud->second = iface; in iface_cb() 128 ret = setup_iface(iface, ud.second, in init_vlan() 138 net_if_up(ud.second); in init_vlan()
|
/Zephyr-latest/tests/net/socket/af_packet/src/ |
D | main.c | 130 struct net_if *second; member 153 ud->second = iface; in iface_cb() 202 zassert_not_null(ud.second, "2nd Ethernet interface not found"); in __test_packet_sockets() 207 *sock2 = setup_socket(ud.second, SOCK_RAW, htons(ETH_P_ALL)); in __test_packet_sockets() 213 ret = bind_socket(*sock2, ud.second); in __test_packet_sockets() 312 zassert_not_null(ud.second, "2nd Ethernet interface not found"); in ZTEST() 317 sock2 = setup_socket(ud.second, SOCK_DGRAM, htons(ETH_P_TSN)); in ZTEST() 323 ret = bind_socket(sock2, ud.second); in ZTEST() 422 zassert_not_null(ud.second, "2nd Ethernet interface not found"); in ZTEST() 427 sock2 = setup_socket(ud.second, SOCK_RAW, htons(ETH_P_ALL)); in ZTEST() [all …]
|
/Zephyr-latest/samples/net/vlan/ |
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface" 24 int "VLAN tag for second interface"
|
/Zephyr-latest/samples/net/virtual/ |
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface"
|
/Zephyr-latest/samples/net/lldp/ |
D | Kconfig | 15 string "My IPv6 address for second interface" 20 string "My IPv4 address for second interface" 25 int "VLAN tag for second interface"
|
/Zephyr-latest/tests/boards/native_sim/rtc/src/ |
D | main.c | 25 unsigned int second; in us_time_to_str() local 30 second = (time / 1000000U) % 60; in us_time_to_str() 33 sprintf(dest, "%02u:%02u:%02u.%06u", hour, minute, second, us); in us_time_to_str()
|
/Zephyr-latest/samples/net/sockets/echo_client/ |
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 int "VLAN tag for second interface"
|
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/ |
D | server.hpp | 110 printf("%d => %d", m_iter->first, m_iter->second); in testMap() 130 printf("%s => %s", (m_iter->first).c_str(), (m_iter->second).c_str()); in testStringMap() 227 for (i2_iter = i_iter->second.begin(); i2_iter != i_iter->second.end(); in testInsanity() 230 map<Numberz::type, UserId> userMap = i2_iter->second.userMap; in testInsanity() 235 printf("%d => %" PRId64 ", ", um->first, um->second); in testInsanity() 239 vector<Xtruct> xtructs = i2_iter->second.xtructs; in testInsanity()
|
/Zephyr-latest/soc/nxp/mcx/mcxn/ |
D | Kconfig | 35 bool "MCXN94X's second core" 38 Indicates the second core will be enabled, and the part will run
|
/Zephyr-latest/drivers/ethernet/ |
D | eth_native_posix_priv.h | 17 int eth_clock_gettime(uint64_t *second, uint32_t *nanosecond);
|
D | eth_native_posix_adapt.c | 119 int eth_clock_gettime(uint64_t *second, uint32_t *nanosecond) in eth_clock_gettime() argument 129 *second = (uint64_t)tp.tv_sec; in eth_clock_gettime()
|
/Zephyr-latest/samples/net/gptp/ |
D | Kconfig | 18 string "My IPv6 address for second interface" 23 string "My IPv4 address for second interface" 28 int "VLAN tag for second interface"
|
/Zephyr-latest/samples/drivers/counter/alarm/ |
D | README.rst | 14 In case of 1Hz frequency (RTC for example), precision is 1 second. 15 Therefore, the sample output may differ in 1 second
|
/Zephyr-latest/drivers/ptp_clock/ |
D | ptp_clock_nxp_enet.c | 43 enet_time.second = tm->second; in ptp_clock_nxp_enet_set() 59 tm->second = enet_time.second; in ptp_clock_nxp_enet_get()
|
/Zephyr-latest/drivers/interrupt_controller/ |
D | Kconfig.multilevel | 13 levels are used, a second level interrupt aggregator would combine 17 second level. The number of interrupt levels is usually determined 54 int "Total number of second level interrupt aggregators" 64 int "Total number of second level interrupt bits" 68 The number of bits to use of the 32 bit interrupt mask for second
|