/Zephyr-Core-3.4.0/tests/unit/timeutil/ |
D | test_sync.c | 71 zassert_equal(ss.base.local, 0, in test_state_update() 72 "unexpected base local"); in test_state_update() 79 "non-increasing local got: %d", rv); in test_state_update() 83 si.local += 20; in test_state_update() 89 zassert_equal(ss.base.local, 0, in test_state_update() 90 "unexpected base local"); in test_state_update() 93 zassert_equal(ss.latest.local, si.local, in test_state_update() 94 "unexpected latest local"); in test_state_update() 132 zassert_equal(ss.base.local, si.local, in test_state_set_skew() 137 si.local += 3; in test_state_set_skew() [all …]
|
/Zephyr-Core-3.4.0/subsys/bluetooth/audio/ |
D | Kconfig.mctl | 16 Enables support for control of local and remote media players 17 To enable support for control of a local media player, support for 18 local media player must be enabled 23 bool "Support for control of local media player" 25 This option enables support for control of a local media player 28 bool "Support for local control of local media player" 32 This option enables support for local application control of local 36 bool "Support for remote control of local media players" 39 This option enables support for remote control of local media
|
/Zephyr-Core-3.4.0/tests/bsim/ |
D | compile.source | 15 local app_root="${app_root:-${ZEPHYR_BASE}}" 16 local conf_file="${conf_file:-prj.conf}" 17 local conf_overlay="${conf_overlay:-""}" 19 local cmake_args="${cmake_args:-"-DCONFIG_COVERAGE=y \ 21 local ninja_args="${ninja_args:-""}" 22 local cc_flags="${cc_flags:-"-Werror"}" 25 local exe_basename="${exe_name:-bs_${BOARD}_${app}_${conf_file}_${conf_overlay}}" 27 local exe_basename="${exe_name:-bs_${BOARD}_${app}_${conf_file}}" 30 local exe_basename=$(echo ${exe_basename} | tr \"/\\.\; _ ) 31 local exe_name=${BSIM_OUT_PATH}/bin/$exe_basename [all …]
|
/Zephyr-Core-3.4.0/drivers/timer/ |
D | Kconfig.apic | 7 bool "New local APIC timer" 13 Use the x86 local APIC in one-shot mode as the system time 22 int "Local APIC timer IRQ" 25 This option specifies the IRQ used by the local APIC timer. 28 local vector table). This footgun is not intended to be 37 TSC frequency to CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC (the local APIC 44 int "TSC to local APIC timer frequency multiplier (N)" 48 int "TSC to local APIC timer frequency divisor (M)" 62 Extremely simple timer driver based the local APIC TSC 73 int "Local APIC timer interrupt priority" [all …]
|
/Zephyr-Core-3.4.0/scripts/west_commands/completion/ |
D | west-completion.bash | 57 # function gets called, COMP_WORDS has already been populated so local 64 local exclude i j first 111 local exclude cur_ words_ cword_ 145 local result=0 222 local IFS=$'\n' 226 local -a toks 227 local x tmp 235 local quoted 240 local xspec=${1:+"!*.@($1|${1^^})"} 271 local argument_flags=$1 [all …]
|
D | west-completion.zsh | 12 local -a builtin_cmds=( 19 'forall[run a command in one or more local projects]' 25 local -a zephyr_ext_cmds=( 39 local -a all_cmds=(${builtin_cmds} ${zephyr_ext_cmds}) 58 local -a global_opts=( 68 local curcontext="$curcontext" context state state_descr line 69 local -a orig_words 96 local extra_args 110 local -a opts=( 111 '(-l --local)'{--mr,--manifest-rev}'[manifest revision]:manifest rev:' [all …]
|
/Zephyr-Core-3.4.0/doc/kernel/services/other/ |
D | thread_local_storage.rst | 3 Thread Local Storage (TLS) 6 Thread Local Storage (TLS) allows variables to be allocated on a per-thread 16 To enable thread local storage in Zephyr, :kconfig:option:`CONFIG_THREAD_LOCAL_STORAGE` 21 thread local storage and/or the toolchain does not support TLS. 24 :kconfig:option:`CONFIG_ERRNO` to let the variable ``errno`` be a thread local 29 Declaring and Using Thread Local Variables 32 The keyword ``__thread`` can be used to declare thread local variables. 34 For example, to declare a thread local variable in header files: 52 Using the thread local variable is the same as using other variable, for example:
|
/Zephyr-Core-3.4.0/samples/net/mdns_responder/ |
D | README.rst | 40 $ avahi-resolve -4 -n zephyr.local 46 zephyr.local 192.0.2.1 52 $ avahi-resolve -6 -n zephyr.local 58 zephyr.local 2001:db8::1 70 + zeth IPv6 zephyr _zephyr._tcp local 71 = zeth IPv6 zephyr _zephyr._tcp local 72 hostname = [zephyr.local]
|
/Zephyr-Core-3.4.0/samples/net/dsa/boards/ |
D | ip_k66f.overlay | 8 local-mac-address = [00 00 12 13 00 10]; 12 local-mac-address = [00 00 12 13 00 37]; 16 local-mac-address = [00 00 12 13 00 27]; 20 local-mac-address = [00 00 12 13 00 17];
|
/Zephyr-Core-3.4.0/samples/boards/nrf/nrf53_sync_rtc/ |
D | README.rst | 17 from shared memory and local system tick updated by the offset. User can observe 61 [00:00:00.054,534] <inf> main: Local timestamp: 1787, application core timestamp: 10056 62 [00:00:00.104,553] <inf> main: Local timestamp: 3426, application core timestamp: 11695 63 [00:00:00.154,571] <inf> main: Local timestamp: 5065, application core timestamp: 13334 64 [00:00:00.204,589] <inf> main: Local timestamp: 6704, application core timestamp: 14973 65 [00:00:00.254,608] <inf> main: Local timestamp: 8343, application core timestamp: 16612 67 [00:00:00.557,006] <inf> main: Local timestamp: 18252, application core timestamp: 18251 68 [00:00:00.607,025] <inf> main: Local timestamp: 19891, application core timestamp: 19890 69 [00:00:00.657,043] <inf> main: Local timestamp: 21530, application core timestamp: 21529 70 [00:00:00.707,061] <inf> main: Local timestamp: 23169, application core timestamp: 23168 [all …]
|
/Zephyr-Core-3.4.0/include/zephyr/sys/ |
D | timeutil.h | 79 * tracking when the local reference is the Zephyr tick counter. A reference 93 /** The nominal local counter rate in Hz. 96 * a local clock driven by a crystal oscillator an error of 25 ppm is 99 * local and reference clocks and apply it when converting between 122 /** The corresponding instance in the local time scale. 126 uint64_t local; member 140 /** Pointer to reference and local rate information. */ 154 * The nominal rate for the local counter is assumed to be 158 * A duration in observed local clock ticks must be multiplied by 160 * the nominal local rate. [all …]
|
/Zephyr-Core-3.4.0/drivers/interrupt_controller/ |
D | Kconfig.loapic | 8 This option selects local APIC as the interrupt controller. 13 hex "Local APIC Base Address" 16 This option specifies the base address of the Local APIC device. 19 bool "Access local APIC in x2APIC mode" 21 If your local APIC supports x2APIC mode, turn this on. 31 by software), the local APIC will deliver a spurious-interrupt
|
/Zephyr-Core-3.4.0/doc/connectivity/networking/api/ |
D | net_hostname.rst | 7 :local: 15 details) and needs to respond to ``<hostname>.local`` DNS queries. 25 postfix to the hostname. By default the link local address of the first network 26 interface is used as a postfix. In Ethernet networks, the link local address 27 refers to MAC address. For example, if the link local address is
|
/Zephyr-Core-3.4.0/scripts/net/ |
D | run-sample-tests.sh | 21 local ret_zephyr=0 22 local ret_net_tools=0 33 local d 37 local l 81 local bridge_interface="" 82 local addresses="--ip=192.0.2.2 --ip6=2001:db8::2" 126 local bridge_interface="" 174 local pid="$(ps -o pid= --ppid "$1")" 189 local zephyrs="$zephyr_pid $(list_children "$zephyr_pid")" 200 local result="" [all …]
|
/Zephyr-Core-3.4.0/tests/bsim/bluetooth/mesh/tests_scripts/large_comp_data/ |
D | get_metadata_split.sh | 13 # 2. Client fetches its local metadata. 15 # received metadata with corresponding bytes in local data. 18 # received metadata with corresponding bytes in local data. 20 # correctly merged, continuous, and matches its local metadata.
|
D | get_comp_data_split.sh | 14 # 2. Client fetch its local comp data. 16 # comp data with corresponding bytes in local comp data. 19 # comp data with correspending bytes in local comp data. 21 # correctly merged, continuous, and matches its local comp data.
|
/Zephyr-Core-3.4.0/tests/bsim/bluetooth/ll/ |
D | _compile_permutate_kconfigs.sh | 40 local -a results=() 45 local exe_name="bs_nrf52_bsim_tests_kconfig_perm" 46 local executable_name=${exe_name} 47 local executable_name=${BSIM_OUT_PATH}/bin/$executable_name 65 local app=tests/bsim/bluetooth/ll/edtt/hci_test_app 66 local conf_file=prj_dut_llcp.conf 67 local conf_overlay=$3
|
/Zephyr-Core-3.4.0/include/zephyr/drivers/interrupt_controller/ |
D | loapic.h | 16 /* Local APIC Register Offset */ 18 #define LOAPIC_ID 0x020 /* Local APIC ID Reg */ 19 #define LOAPIC_VER 0x030 /* Local APIC Version Reg */ 65 * @brief Read 64-bit value from the local APIC in x2APIC mode. 81 * @brief Read 32-bit value from the local APIC in xAPIC (MMIO) mode. 97 * @brief Read value from the local APIC using the default mode. 99 * Returns a 32-bit value read from the local APIC, using the access 116 * @brief Write 64-bit value to the local APIC in x2APIC mode. 128 * @brief Write 32-bit value to the local APIC in xAPIC (MMIO) mode. 145 * @brief Write 32-bit value to the local APIC using the default mode. [all …]
|
/Zephyr-Core-3.4.0/tests/bluetooth/host/ecc/bt_pub_key_gen/src/ |
D | test_suite_invalid_inputs.c | 39 * - "LE Read Local P-256 Public Key" command is supported 56 /* Set "LE Read Local P-256 Public Key" command support bit */ in ZTEST() 67 * Test public key generation isn't supported if "LE Read Local P-256 Public Key" command 71 * - "LE Read Local P-256 Public Key" command isn't supported 82 /* Clear "LE Read Local P-256 Public Key" command support bit */ in ZTEST() 96 * - "LE Read Local P-256 Public Key" command is supported 107 /* Set "LE Read Local P-256 Public Key" command support bit */ in ZTEST() 121 * - "LE Read Local P-256 Public Key" command is supported 133 /* Set "LE Read Local P-256 Public Key" command support bit */ in ZTEST() 155 * - "LE Read Local P-256 Public Key" command is supported [all …]
|
/Zephyr-Core-3.4.0/tests/lib/cpp/libcxx/src/ |
D | main.cpp | 24 std::array<uint8_t, 2> local = {1, 2}; in ZTEST() local 25 zassert_equal(local.size(), 2, "unexpected size"); in ZTEST() 26 zassert_equal(local[0], 1, "local[0] wrong"); in ZTEST() 27 zassert_equal(local[1], 2, "local[1] wrong"); in ZTEST()
|
/Zephyr-Core-3.4.0/samples/net/mqtt_publisher/ |
D | docker-test.sh | 14 "/usr/local/sbin/mosquitto -v -c /usr/local/etc/mosquitto/mosquitto.conf" || return $? 31 "/usr/local/sbin/mosquitto -v -c /usr/local/etc/mosquitto/mosquitto-tls.conf" || return $?
|
/Zephyr-Core-3.4.0/subsys/net/lib/capture/ |
D | capture.c | 78 * Local (inner) tunnel IP address. This will be set 79 * as a local address to tunnel network interface. 81 struct sockaddr local; member 128 info.local = &ctx->local; in net_capture_foreach() 196 NET_ERR("Tunnel local address \"%s\" invalid.", in setup_iface() 279 struct sockaddr local = { 0 }; in net_capture_setup() local 376 ret = setup_iface(ipip_iface, my_local_addr, &local, &local_addr_len); in net_capture_setup() 383 if (peer.sa_family != local.sa_family) { in net_capture_setup() 384 NET_ERR("Peer and local address are not the same family " in net_capture_setup() 385 "(%d vs %d)", peer.sa_family, local.sa_family); in net_capture_setup() [all …]
|
/Zephyr-Core-3.4.0/lib/os/ |
D | timeutil.c | 81 && (inst->local > tsp->base.local))) { in timeutil_sync_state_update() 118 && (tsp->latest.local > tsp->base.local)) { in timeutil_sync_estimate_skew() 121 double local_delta = tsp->latest.local - tsp->base.local; in timeutil_sync_estimate_skew() 130 uint64_t local, uint64_t *refp) in timeutil_sync_ref_from_local() argument 136 int64_t local_delta = local - tsp->base.local; in timeutil_sync_ref_from_local() 173 int64_t local_abs = (int64_t)tsp->base.local in timeutil_sync_local_from_ref()
|
/Zephyr-Core-3.4.0/subsys/bluetooth/controller/ll_sw/ |
D | ull_llcp_local.c | 53 /* LLCP Local Request FSM State */ 61 /* LLCP Local Request FSM Event */ 91 * LLCP Local Request Shared Data Locking 119 * LLCP Local Request FSM 124 conn->llcp.local.state = state; in lr_set_state() 135 sys_slist_append(&conn->llcp.local.pend_proc_list, &ctx->node); in llcp_lr_enqueue() 150 ctx = (struct proc_ctx *)sys_slist_get(&conn->llcp.local.pend_proc_list); in lr_dequeue() 166 ctx = (struct proc_ctx *)sys_slist_peek_head(&conn->llcp.local.pend_proc_list); in llcp_lr_peek() 183 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&conn->llcp.local.pend_proc_list, ctx, tmp, node) { in llcp_lr_peek_proc() 196 return conn->llcp.local.pause == 1U; in llcp_lr_ispaused() [all …]
|
/Zephyr-Core-3.4.0/samples/net/sockets/http_client/ |
D | docker-test.sh | 13 start_docker "/usr/local/bin/http-server.py" || return $? 35 start_docker "/usr/local/bin/https-server.py 192.0.2.2" \ 36 "/usr/local/bin/https-server.py 2001:db8::2" || return $?
|