Home
last modified time | relevance | path

Searched refs:file (Results 1 – 25 of 44) sorted by relevance

12

/SCP-firmware-master/debugger/include/
A Dcheckpoint.h110 void checkpoint(checkpoint_st *c, char *file, int32_t line, char *tag);
154 # define checkpoint(c, file, line, tag) \ argument
157 (void)file; \
/SCP-firmware-master/framework/src/
A Dassert.c11 void __aeabi_assert(const char *expr, const char *file, int line) in __aeabi_assert() argument
19 const char *file, in __assert_func() argument
/SCP-firmware-master/tools/
A Dcheck_api.py76 with open(BANNED_LIST) as file:
77 for fname in file:
117 with open(path, encoding="utf-8") as file:
118 for line, string in enumerate(file):
122 file=sys.stderr)
A Dcheck_spacing.py148 with open(path, encoding="utf-8") as file:
149 lines = file.readlines()
195 if file.newlines:
196 if isinstance(file.newlines, tuple):
199 elif file.newlines != '\n':
215 with open(path, 'w') as file:
216 file.write(content)
A Dcheck_style.py147 for file in files:
148 filename = os.path.join(root, file)
149 if is_valid_file_type(file):
A Dcheck_tabs.py62 file, temp_file = tempfile.mkstemp(prefix='tabs_to_spaces_')
133 with open(path, encoding="utf-8") as file:
134 for line, string in enumerate(file):
A Dcheck_copyright.py129 with open(filename, encoding="utf-8") as file:
131 head_lines = islice(file, HEAD_LINE_COUNT)
/SCP-firmware-master/arch/
A DCMakeLists.txt24 "No architecture list file found!\n"
29 "initial-cache file ('Firmware.cmake'), but its "
30 "'Architecture.cmake' file could not be located.")
37 "No name given by architecture metadata file!\n"
41 "This architecture metadata file has not yielded an architecture "
43 "set `SCP_ARCHITECTURE` in your 'Architecture.cmake' file.")
55 "'Architecture.cmake' file.")
80 "initial-cache file you provided has requested a custom architecture "
/SCP-firmware-master/debugger/src/
A Dcheckpoint.c72 void checkpoint(checkpoint_st *c, char *file, int32_t line, char *tag) in checkpoint() argument
81 file, in checkpoint()
93 file, in checkpoint()
/SCP-firmware-master/module/stdio/include/
A Dmod_stdio.h107 struct mod_stdio_file file; member
/SCP-firmware-master/cmake/
A DSCPPreprocessSource.cmake16 # Preprocess a file with the C preprocessor.
20 # This macro creates a target ``<target>`` which preprocesses a source file
21 # ``<source>``, giving the file ``<output>``.
32 # describes the command line required to preprocess a C source file. This
46 # source file.
/SCP-firmware-master/contrib/cmsis/
A D.clang-tidy2 FormatStyle: "file"
/SCP-firmware-master/
A D.clang-tidy2 FormatStyle: "file"
A DVagrantfile8 config.vm.provision "file", source: "~/.gitconfig", destination: "${HOME}/.gitconfig"
A Ddco.txt19 indicated in the file; or
27 in the file; or
/SCP-firmware-master/framework/test/
A Dfwk_test.c42 const char *file, unsigned int line, const char *function) in __assert_fail() argument
46 printf(" File: %-66s\n", file); in __assert_fail()
/SCP-firmware-master/product/morello/
A Dreadme.md10 functions defined in the `morello_sensor_driver.c` file are used.
/SCP-firmware-master/module/stdio/src/
A Dmod_stdio.c87 ctx->stream = fopen(cfg->file.path, cfg->file.mode); in mod_stdio_open()
/SCP-firmware-master/module/
A DCMakeLists.txt14 # initial-cache file through `SCP_MODULES` and `SCP_MODULE_PATHS`. Here we
16 # 'Module.cmake' file from within, which describes the module. The module paths
107 "No module list file found!\n"
112 "file ('Firmware.cmake'), but its 'Module.cmake' file could not be "
124 "This module metadata file has not yielded a module name and as "
127 "'Module.cmake' file.")
161 "the module path to `SCP_MODULE_PATHS` in your 'Firmware.cmake' file.")
261 # which were specified by its 'Module.cmake' file.
/SCP-firmware-master/doc/
A DDoxyfile177 # less readable) file names. This can be useful is your file systems doesn't
476 # 'anonymous_namespace{file}', where file will be replaced with the base name of
523 # in case and if your file system supports case sensitive file names. Windows
544 # the files that are included by a file in the documentation of that file.
689 # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
908 # <filter> <input-file>
1155 # files. In the HTML_STYLESHEET file, use the file name only. Also note that the
1284 # file. You can add a path in front of the file if the result should not be
1336 # the file name of the resulting .qch file. The path specified is relative to
1384 # generated .qhp file.
[all …]
A Dcode_rules.md35 --includes-file="${WORKDIR}/framework/include/" \
164 The contents of a header file should be wrapped in an 'include guard' to prevent
166 the upper-case file name followed by "_H". An example for fwk_mm.h follows:
181 Space between definition inside the header file should be a single line only.
183 If a unit (header or C file) requires a header, it must include that header
236 Declare functions and variables private to a C file as static.
328 - The file containing the device structure must include `<stdint.h>` to gain
330 - The file containing the device structure must include `<fwk_macros.h>` to
367 __Note:__ A template file can be found in doc/template/device.h
A Dcode_style.md16 year describes the year the file was first upstreamed, and the second year the
17 year when the file was last updated:
29 file, and that deviations occur only where the tool is unable to format code
134 file name followed by `_H`. An example for a file named `fwk_mm.h` follows:
153 - The header is already included by the counterpart to the current C file (e.g.
189 Function, variable, file name and type names must:
341 **Note:** A template file can be found in doc/template/device.h
/SCP-firmware-master/product/n1sdp/
A Dreadme.md19 functions defined in the `n1sdp_sensor_driver.c` file are used.
/SCP-firmware-master/product/rcar/src/CMSIS-FreeRTOS/Source/portable/MemMang/
A Dheap_1.c49 # error This file must not be used if configSUPPORT_DYNAMIC_ALLOCATION is 0
/SCP-firmware-master/unit_test/
A Duser_guide.md74 Toplevel CMakeLists file for building unit test framework and test cases.
77 - gm.rb: A ruby script to generate mocks for passed header file.
78 - user_guide.md: This file.
177 in the unit test source file.
205 and for ```internal``` version of this file
257 When generating a new mock, a .clang-format file is placed in the
271 2. Modify *.cmake file for our specific test case:
281 5. Mock any APIs, by mocking the ```mod_{}_extra.h``` file

Completed in 30 milliseconds

12