Searched refs:module_fun (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | builtinevex.c | 38 mp_obj_t module_fun; member 55 if (mp_obj_is_type(self->module_fun, &mp_type_fun_bc)) { in code_execute() 56 mp_obj_fun_bc_t *fun_bc = MP_OBJ_TO_PTR(self->module_fun); in code_execute() 63 mp_obj_t ret = mp_call_function_0(self->module_fun); in code_execute() 108 code->module_fun = mp_parse_compile_execute(lex, parse_input_kind, NULL, NULL); in mp_builtin_compile()
|
A D | builtinimport.c | 166 mp_obj_t module_fun = mp_make_function_from_raw_code(raw_code, MP_OBJ_NULL, MP_OBJ_NULL); in do_execute_raw_code() local 167 mp_call_function_0(module_fun); in do_execute_raw_code()
|
A D | runtime.c | 1487 …mp_obj_t module_fun = mp_compile(&parse_tree, source_name, parse_input_kind == MP_PARSE_SINGLE_INP… in mp_parse_compile_execute() local 1492 ret = module_fun; in mp_parse_compile_execute() 1495 ret = mp_call_function_0(module_fun); in mp_parse_compile_execute()
|
/AliOS-Things-master/components/py_engine/engine/shared/upytesthelper/ |
A D | upytesthelper.c | 104 mp_obj_t module_fun = mp_compile(&parse_tree, source_name, false); in upytest_execute_test() local 105 mp_call_function_0(module_fun); in upytest_execute_test()
|
/AliOS-Things-master/components/py_engine/engine/shared/runtime/ |
A D | pyexec.c | 82 mp_obj_t module_fun; in parse_compile_execute() local 86 module_fun = mp_make_function_from_raw_code(source, MP_OBJ_NULL, MP_OBJ_NULL); in parse_compile_execute() 105 module_fun = mp_compile(&parse_tree, source_name, exec_flags & EXEC_FLAG_IS_REPL); in parse_compile_execute() 116 mp_call_function_0(module_fun); in parse_compile_execute()
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | main.c | 222 mp_obj_t module_fun = mp_compile(&parse_tree, source_name, true); in do_str() local 223 mp_call_function_0(module_fun); in do_str()
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | main.c | 222 mp_obj_t module_fun = mp_compile(&parse_tree, source_name, true); in do_str() local 223 mp_call_function_0(module_fun); in do_str()
|
/AliOS-Things-master/components/py_engine/adapter/ |
A D | main.c | 390 mp_obj_t module_fun = mp_compile(&parse_tree, source_name, true); in do_str() local 391 mp_call_function_0(module_fun); in do_str()
|
Completed in 13 milliseconds