Home
last modified time | relevance | path

Searched refs:args (Results 1 – 8 of 8) sorted by relevance

/nanopb-2.7.6/tests/site_scons/platforms/stm32/
Dvectors.c12 uint32_t args[3]; in HardFaultHandler() local
13 args[0] = 2; in HardFaultHandler()
14 args[1] = (uint32_t)"HARDFAULT"; in HardFaultHandler()
15 args[2] = 9; in HardFaultHandler()
19 "bkpt 0x00ab" : : "r"(args) : "r0", "r1", "memory"); in HardFaultHandler()
/nanopb-2.7.6/generator/
Dprotoc22 args = sys.argv[1:] variable
25 args = ['--plugin=protoc-gen-nanopb=%s' % protoc_gen_nanopb] + args variable
27 status = invoke_protoc(['protoc'] + args)
Dnanopb_generator.py92 def __exit__(self, *args): argument
2270 args = shlex.split(params)
2272 if len(args) == 1 and ',' in args[0]:
2279 args = list(lex)
2284 if '-h' in args or '--help' in args:
2290 options, dummy = optparser.parse_args(args)
/nanopb-2.7.6/tests/site_scons/
Dsite_init.py36 args = [env["COMMAND"]]
38 args = [str(source[0])]
41 args.extend(env['ARGS'])
44 args = [env["TEST_RUNNER"]] + args
46 print('Command line: ' + str(args))
47 pipe = subprocess.Popen(args,
53 print('\033[32m[ OK ]\033[0m Ran ' + args[0])
55 print('\033[31m[FAIL]\033[0m Program ' + args[0] + ' returned ' + str(result))
/nanopb-2.7.6/tests/site_scons/platforms/avr/
Davr_io.c16 char args[3][16]; member
53 const char *argv[4] = {"main", g_args.args[0], g_args.args[1], g_args.args[2]}; in main()
Drun_test.c20 char args[3][16]; member
171 strncpy(g_args.args[i], argv[i + argc_offset], 15); in main()
/nanopb-2.7.6/tests/fuzztest/
DSConscript81 args = [str(source[0])]
84 args = [env["TEST_RUNNER"]] + args
105 process = subprocess.Popen(args, stdin=subprocess.PIPE,
119 …print('\033[31m[FAIL]\033[0m Program ' + str(args) + ' returned ' + str(result) + ' with input '…
123 …print('\033[32m[ OK ]\033[0m Ran ' + str(args) + " against " + str(source[1]) + " (" + str(count…
/nanopb-2.7.6/extra/
DFindNanopb.cmake259 …# - An older hacky one using ':' as option separator in protoc args preventing the ':' to be used …