Home
last modified time | relevance | path

Searched full:path (Results 1 – 25 of 1022) sorted by relevance

12345678910>>...41

/Zephyr-Core-3.6.0/
Dwest.yml4 # path to the project containing this file in the [manifest] section's
5 # "path" variable.
34 path: modules/lib/acpica
36 repo-path: babblesim-manifest
38 path: tools/bsim
43 repo-path: base.git
44 path: tools/bsim/components
50 repo-path: ext_2G4_libPhyComv1.git
51 path: tools/bsim/components/ext_2G4_libPhyComv1
57 repo-path: ext_2G4_phy_v1.git
[all …]
/Zephyr-Core-3.6.0/doc/services/input/
Ddiodes-cr.svg82 <path
86 <path
95 <path
98 <path
119 <path
122 <path
125 <path
128 <path
131 <path
134 <path
[all …]
Ddiodes-rc.svg82 <path
86 <path
95 <path
98 <path
119 <path
122 <path
125 <path
128 <path
131 <path
134 <path
[all …]
Dno-diodes.svg82 <path
86 <path
95 <path
98 <path
119 <path
122 <path
125 <path
128 <path
131 <path
134 <path
[all …]
Dno-sw4.svg82 <path
86 <path
95 <path
98 <path
119 <path
122 <path
125 <path
128 <path
131 <path
134 <path
[all …]
/Zephyr-Core-3.6.0/tests/subsys/fs/littlefs/src/
Dtest_util.c18 static struct testfs_path path; variable
25 testfs_path_init(&path, &mnt, TESTFS_PATH_END); in reset_path()
26 return &path; in reset_path()
31 zassert_equal(testfs_path_init(&path, NULL, TESTFS_PATH_END), in ZTEST()
32 path.path, in ZTEST()
34 zassert_equal(strcmp(path.path, "/"), 0, "bad root init path"); in ZTEST()
36 zassert_equal(testfs_path_init(&path, &mnt, TESTFS_PATH_END), in ZTEST()
37 path.path, in ZTEST()
39 zassert_equal(strcmp(path.path, mnt.mnt_point), 0, "bad mnt init path"); in ZTEST()
47 testfs_path_init(&path, &invalid, TESTFS_PATH_END); in ZTEST()
[all …]
/Zephyr-Core-3.6.0/subsys/net/lib/lwm2m/
Dlwm2m_registry.c99 const struct lwm2m_obj_path *path, const void *value,
158 struct lwm2m_engine_obj *lwm2m_engine_get_obj(const struct lwm2m_obj_path *path) in lwm2m_engine_get_obj() argument
160 if (path->level < LWM2M_PATH_LEVEL_OBJECT) { in lwm2m_engine_get_obj()
164 return get_engine_obj(path->obj_id); in lwm2m_engine_get_obj()
319 int lwm2m_create_object_inst(const struct lwm2m_obj_path *path) in lwm2m_create_object_inst() argument
324 if (path->level != LWM2M_PATH_LEVEL_OBJECT_INST) { in lwm2m_create_object_inst()
325 LOG_ERR("path must have 2 parts"); in lwm2m_create_object_inst()
329 ret = lwm2m_create_obj_inst(path->obj_id, path->obj_inst_id, &obj_inst); in lwm2m_create_object_inst()
341 struct lwm2m_obj_path path; in lwm2m_engine_create_obj_inst() local
344 LOG_DBG("path:%s", pathstr); in lwm2m_engine_create_obj_inst()
[all …]
Dlwm2m_observation.c176 static bool lwm2m_notify_observer_list(sys_slist_t *path_list, const struct lwm2m_obj_path *path) in lwm2m_notify_observer_list() argument
181 if (lwm2m_observer_path_compare(&o_p->path, path)) { in lwm2m_notify_observer_list()
191 struct lwm2m_obj_path path; in lwm2m_notify_observer() local
193 path.level = LWM2M_PATH_LEVEL_RESOURCE; in lwm2m_notify_observer()
194 path.obj_id = obj_id; in lwm2m_notify_observer()
195 path.obj_inst_id = obj_inst_id; in lwm2m_notify_observer()
196 path.res_id = res_id; in lwm2m_notify_observer()
198 return lwm2m_notify_observer_path(&path); in lwm2m_notify_observer()
201 static int engine_observe_get_attributes(const struct lwm2m_obj_path *path, in engine_observe_get_attributes() argument
216 obj = get_engine_obj(path->obj_id); in engine_observe_get_attributes()
[all …]
Dlwm2m_observation.h11 int lwm2m_notify_observer_path(const struct lwm2m_obj_path *path);
17 sys_slist_t path_list; /* List of Observation path */
55 /* path object list */
58 struct lwm2m_obj_path path; member
60 /* Initialize path list */
65 * Add new path to the list while maintaining hierarchical sort order
67 * @param lwm2m_path_list sorted path list
69 * @param path path to be added
73 const struct lwm2m_obj_path *path);
75 int lwm2m_get_path_reference_ptr(struct lwm2m_engine_obj *obj, const struct lwm2m_obj_path *path,
[all …]
/Zephyr-Core-3.6.0/tests/net/lib/lwm2m/observation/src/
Dlwm2m_observation.c21 static bool lwm2m_path_object_equal_upto(struct lwm2m_obj_path *path, in lwm2m_path_object_equal_upto() argument
25 if (level >= LWM2M_PATH_LEVEL_OBJECT && path->obj_id != compare_path->obj_id) { in lwm2m_path_object_equal_upto()
30 path->obj_inst_id != compare_path->obj_inst_id) { in lwm2m_path_object_equal_upto()
34 if (level >= LWM2M_PATH_LEVEL_RESOURCE && path->res_id != compare_path->res_id) { in lwm2m_path_object_equal_upto()
39 path->res_inst_id != compare_path->res_inst_id) { in lwm2m_path_object_equal_upto()
63 if (entry->path.level > prev->path.level) { in assert_path_list_order()
67 if (prev->path.level >= LWM2M_PATH_LEVEL_OBJECT) { in assert_path_list_order()
68 is_after = entry->path.obj_id >= prev->path.obj_id; in assert_path_list_order()
70 if (is_after && prev->path.level >= LWM2M_PATH_LEVEL_OBJECT_INST && in assert_path_list_order()
71 entry->path.obj_id == prev->path.obj_id) { in assert_path_list_order()
[all …]
/Zephyr-Core-3.6.0/doc/hardware/pinctrl/images/
Dhw-dist-control.svg53 <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
56 <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
59 <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
62 …<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z…
65 …<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 …
68 …<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,7…
71 …<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 …
74 …<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 …
77 <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
80 …<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,…
[all …]
Dhw-cent-control.svg56 <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
59 <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
62 <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
65 …<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z…
68 …<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 …
71 …<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,7…
74 …<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 …
77 …<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 …
80 <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
83 …<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,…
[all …]
/Zephyr-Core-3.6.0/doc/build/dts/
Dmacros.bnf26 node-macro =/ %s"DT_N" path-id %s"_EXISTS"
30 node-macro =/ %s"DT_N" path-id %s"_BUS" ["_" dt-name]
32 node-macro =/ %s"DT_N" path-id %s"_REG_NUM"
33 node-macro =/ %s"DT_N" path-id %s"_REG_IDX_" DIGIT "_EXISTS"
34 node-macro =/ %s"DT_N" path-id %s"_REG_IDX_" DIGIT
36 node-macro =/ %s"DT_N" path-id %s"_REG_NAME_" dt-name
39 node-macro =/ %s"DT_N" path-id %s"_IRQ_NUM"
40 node-macro =/ %s"DT_N" path-id %s"_IRQ_LEVEL"
41 node-macro =/ %s"DT_N" path-id %s"_IRQ_IDX_" DIGIT "_EXISTS"
42 node-macro =/ %s"DT_N" path-id %s"_IRQ_IDX_" DIGIT
[all …]
/Zephyr-Core-3.6.0/scripts/tests/twister_blackbox/
Dtest_hardwaremap.py17 sys.path.insert(0, os.path.join(ZEPHYR_BASE, "scripts/pylib/twister/twisterlib"))
98 apath = os.path.join(ZEPHYR_BASE, 'scripts', 'twister')
113 path = os.path.join(ZEPHYR_BASE, file_name)
116 if os.path.exists(path):
117 os.remove(path)
141 assert os.path.exists(path)
150 load_data = open(path).read()
153 if os.path.exists(path):
154 os.remove(path)
165 path = os.path.join(ZEPHYR_BASE, file_name)
[all …]
Dtest_report.py28 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
40 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
51 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
60 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
70 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
82 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
93 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
105 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
112 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
122 os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic'),
[all …]
/Zephyr-Core-3.6.0/subsys/fs/
Dshell.c87 static void create_abs_path(const char *name, char *path, size_t len) in create_abs_path() argument
90 strncpy(path, name, len); in create_abs_path()
91 path[len - 1] = '\0'; in create_abs_path()
95 *path++ = '/'; in create_abs_path()
98 strncpy(path, name, len); in create_abs_path()
99 path[len - 1] = '\0'; in create_abs_path()
101 strncpy(path, cwd, len); in create_abs_path()
102 path[len - 1] = '\0'; in create_abs_path()
104 size_t plen = strlen(path); in create_abs_path()
107 path += plen; in create_abs_path()
[all …]
Dfs_impl.h19 * @brief Strip the mount point prefix from a path.
21 * @param path an absolute path beginning with a mount point.
23 * @param mp a pointer to the mount point within which @p path is found
25 * @return the absolute path within the mount point. Behavior is
26 * undefined if @p path does not start with the mount point prefix.
28 const char *fs_impl_strip_prefix(const char *path,
/Zephyr-Core-3.6.0/submanifests/
Doptional.yaml8 path: modules/lib/canopennode
14 path: modules/lib/chre
20 path: modules/lib/lz4
26 path: modules/lib/nanopb
32 path: modules/tee/tf-m/psa-arch-tests
38 path: modules/audio/sof
44 path: modules/tee/tf-m/tf-m-tests
50 path: optional/modules/lib/tflite-micro
51 repo-path: tflite-micro
56 path: optional/modules/lib/thrift
[all …]
/Zephyr-Core-3.6.0/tests/net/lib/lwm2m/interop/pytest/
Dleshan.py57 def get(self, path: str):
62 resp = self._s.get(f'{self.api_url}{path}', params=params, timeout=self.timeout)
65 …def put_raw(self, path: str, data: str | dict | None = None, headers: dict | None = None, params: …
67 …resp = self._s.put(f'{self.api_url}{path}', data=data, headers=headers, params=params, timeout=sel…
70 def put(self, path: str, data: str | dict, uri_options: str = ''):
74 …return self.put_raw(f'{path}?timeout={self.timeout}&format={self.format}' + uri_options, data=data…
76 def post(self, path: str, data: str | dict | None = None):
86 …resp = self._s.post(f'{self.api_url}{path}' + uri_options, data=data, headers=headers, timeout=sel…
89 def delete_raw(self, path: str):
91 resp = self._s.delete(f'{self.api_url}{path}', timeout=self.timeout)
[all …]
/Zephyr-Core-3.6.0/scripts/west_commands/
Dbuild_helpers.py16 from pathlib import Path
23 script_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
24 sys.path.insert(0, os.path.join(script_dir, "pylib/build_helpers/"))
46 kwargs['source_dir'] = os.path.relpath(source_dir, cwd)
48 # no meaningful relative path possible
61 parts = Path(fmt).parts
62 b = Path('.')
68 # if fmt is an absolute path, the first iteration will always
70 b = Path(str(b).format(**kwargs))
112 return os.path.abspath(build_dir)
[all …]
/Zephyr-Core-3.6.0/tests/subsys/fs/common/
Dtest_fs_basic.c24 struct testfs_path path; in create_write_hello() local
31 testfs_path_init(&path, mp, in create_write_hello()
40 zassert_equal(fs_stat(path.path, &stat), in create_write_hello()
55 zassert_equal(fs_stat(path.path, &stat), in create_write_hello()
76 zassert_equal(fs_stat(path.path, &stat), in create_write_hello()
92 struct testfs_path path; in verify_hello() local
99 testfs_path_init(&path, mp, in verify_hello()
124 struct testfs_path path; in seek_within_hello() local
131 testfs_path_init(&path, mp, in seek_within_hello()
143 zassert_equal(fs_stat(path.path, &stat), in seek_within_hello()
[all …]
/Zephyr-Core-3.6.0/scripts/dts/
Dgen_dts_cmake.py35 dt_prop(compat PATH "/soc" PROPERTY compatible INDEX 0)
48 sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'python-devicetree',
57 help="path to write the CMake property file")
59 help="path to read the pickled edtlib.EDT object from")
89 path = chosen_nodes[node].path
90 cmake_props.append(f'"DT_CHOSEN|{node}" "{path}"')
95 path = node.path
97 cmake_props.append(f'"DT_ALIAS|{alias}" "{path}"')
101 cmake_props.append(f'"DT_NODE|{node.path}" TRUE')
104 cmake_props.append(f'"DT_NODELABEL|{label}" "{node.path}"')
[all …]
/Zephyr-Core-3.6.0/scripts/
Dget_maintainer.py16 ./get_maintainer.py path --help
71 "path",
75 metavar="PATH",
77 help="Path to list areas for")
117 "path",
118 metavar="PATH",
120 help="Limit to files under PATH")
167 The path to the maintainers file
174 Path to the maintainers file to parse. If None, MAINTAINERS.yml in
178 if (filename is not None) and (pathlib.Path(filename).exists()):
[all …]
/Zephyr-Core-3.6.0/samples/subsys/fs/fs_sample/src/
Dmain.c58 static int lsdir(const char *path);
62 char path[MAX_PATH]; in create_some_entries() local
68 if (base >= (sizeof(path) - SOME_REQUIRED_LEN)) { in create_some_entries()
74 strncpy(path, base_path, sizeof(path)); in create_some_entries()
76 path[base++] = '/'; in create_some_entries()
77 path[base] = 0; in create_some_entries()
78 strcat(&path[base], SOME_FILE_NAME); in create_some_entries()
80 if (fs_open(&file, path, FS_O_CREATE) != 0) { in create_some_entries()
81 LOG_ERR("Failed to create file %s", path); in create_some_entries()
86 path[base] = 0; in create_some_entries()
[all …]
/Zephyr-Core-3.6.0/modules/openthread/platform/
Dsettings.c43 char path[OT_SETTINGS_MAX_PATH_LEN]; in ot_setting_delete_cb() local
60 ret = snprintk(path, sizeof(path), "%s%s%s", ctx->subtree, in ot_setting_delete_cb()
62 __ASSERT(ret < sizeof(path), "Setting path buffer too small."); in ot_setting_delete_cb()
64 LOG_DBG("Removing: %s", path); in ot_setting_delete_cb()
66 ret = settings_delete(path); in ot_setting_delete_cb()
68 LOG_ERR("Failed to remove setting %s, ret %d", path, in ot_setting_delete_cb()
103 __ASSERT(ret < sizeof(subtree), "Setting path buffer too small."); in ot_setting_delete_subtree()
132 static bool ot_setting_exists(const char *path) in ot_setting_exists() argument
136 (void)settings_load_subtree_direct(path, ot_setting_exists_cb, &exists); in ot_setting_exists()
224 char path[OT_SETTINGS_MAX_PATH_LEN]; in otPlatSettingsGet() local
[all …]

12345678910>>...41