Searched refs:file (Results 1 – 14 of 14) sorted by relevance
/optee_benchmark/libyaml/tests/run-test-suite/src/ |
A D | ReadMe.md | 15 Print parse events for a YAML file (or stdin): 17 ./libyaml-parser file.yaml 18 ./libyaml-parser < file.yaml 19 cat file.yaml | ./libyaml-parser 22 Print the YAML for a libyaml-parser events file (or stdin): 24 ./libyaml-emitter file.events 25 ./libyaml-emitter < file.events 26 cat file.events | ./libyaml-emitter
|
/optee_benchmark/libyaml/tests/ |
A D | run-loader.c | 23 FILE *file; in main() local 33 file = fopen(argv[number], "rb"); in main() 34 assert(file); in main() 38 yaml_parser_set_input_file(&parser, file); in main() 56 assert(!fclose(file)); in main()
|
A D | run-parser.c | 23 FILE *file; in main() local 33 file = fopen(argv[number], "rb"); in main() 34 assert(file); in main() 38 yaml_parser_set_input_file(&parser, file); in main() 56 assert(!fclose(file)); in main()
|
A D | run-scanner.c | 23 FILE *file; in main() local 33 file = fopen(argv[number], "rb"); in main() 34 assert(file); in main() 38 yaml_parser_set_input_file(&parser, file); in main() 56 assert(!fclose(file)); in main()
|
A D | run-dumper.c | 165 FILE *file; in print_output() local 172 file = fopen(name, "rb"); in print_output() 173 assert(file); in print_output() 176 assert(!ferror(file)); in print_output() 180 if (feof(file)) break; in print_output() 182 fclose(file); in print_output() 225 FILE *file; in main() local 244 file = fopen(argv[number], "rb"); in main() 245 assert(file); in main() 248 yaml_parser_set_input_file(&parser, file); in main() [all …]
|
A D | run-emitter.c | 190 FILE *file; in print_output() local 197 file = fopen(name, "rb"); in print_output() 198 assert(file); in print_output() 201 assert(!ferror(file)); in print_output() 205 if (feof(file)) break; in print_output() 207 fclose(file); in print_output() 250 FILE *file; in main() local 268 file = fopen(argv[number], "rb"); in main() 269 assert(file); in main() 272 yaml_parser_set_input_file(&parser, file); in main() [all …]
|
/optee_benchmark/ |
A D | benchmark_aux.c | 135 FILE *file; in get_library_load_offset() local 144 file = fopen(path, "rt"); in get_library_load_offset() 145 if (file == NULL) in get_library_load_offset() 148 while (fgets(buf, sizeof(buf), file) != NULL) { in get_library_load_offset() 168 fclose(file); in get_library_load_offset()
|
/optee_benchmark/libyaml/ |
A D | .makefile | 1 # This file is used for common development targets that can be done with 8 # If you copy or link this file to `GNUmakefile` then you can just do: 12 # When copied to `GNUmakefile`, this file is can also be used for bootstrapping
|
A D | CMakeLists.txt | 11 file (GLOB SRC src/*.c)
|
A D | announcement.msg | 19 under the MIT license; see the file LICENSE for more details.
|
A D | README | 24 under the MIT license. See the file LICENSE for more details.
|
/optee_benchmark/libyaml/src/ |
A D | api.c | 274 *size_read = fread(buffer, 1, size, parser->input.file); in yaml_file_read_handler() 275 return !ferror(parser->input.file); in yaml_file_read_handler() 303 yaml_parser_set_input_file(yaml_parser_t *parser, FILE *file) in yaml_parser_set_input_file() argument 307 assert(file); /* Non-NULL file object expected. */ in yaml_parser_set_input_file() 312 parser->input.file = file; in yaml_parser_set_input_file() 444 return (fwrite(buffer, 1, size, emitter->output.file) == size); in yaml_file_write_handler() 472 yaml_emitter_set_output_file(yaml_emitter_t *emitter, FILE *file) in yaml_emitter_set_output_file() argument 476 assert(file); /* Non-NULL file object expected. */ in yaml_emitter_set_output_file() 481 emitter->output.file = file; in yaml_emitter_set_output_file()
|
/optee_benchmark/libyaml/include/ |
A D | yaml.h | 1133 FILE *file; member 1357 yaml_parser_set_input_file(yaml_parser_t *parser, FILE *file); 1567 FILE *file; member 1819 yaml_emitter_set_output_file(yaml_emitter_t *emitter, FILE *file);
|
/optee_benchmark/libyaml/doc/ |
A D | doxygen.cfg | 69 WARN_FORMAT = "$file:$line: $text"
|
Completed in 15 milliseconds