/AliOS-Things-master/components/py_engine/tests/io/ |
A D | file1.py | 1 f = open("io/data/file1") variable 5 f = open("io/data/file1") variable 7 f = open("io/data/file1", "r") variable 9 f = open("io/data/file1", "rb") variable 11 f = open("io/data/file1", mode="r") variable 13 f = open("io/data/file1", mode="rb") variable 17 f = open("io/data/file1", "r") variable 25 f = open("io/data/file1", "ab") variable 33 f = open("io/data/file1", "at") variable 41 f = open("io/data/file1", "ab") variable
|
A D | open_append.py | 17 f = open("testfile", "a") variable 21 f = open("testfile") variable 25 f = open("testfile", "a") variable 29 f = open("testfile") variable
|
A D | file_seek.py | 1 f = open("io/data/file1", "rb") variable 21 f = open("io/data/file1", "rt") variable 28 f = open("io/data/file1", "r") variable
|
A D | file_readinto.py | 2 f = open("io/data/file1", "rb") variable 5 f = open("io/data/file2", "rb") variable 10 f = open("io/data/file1", "ab") variable
|
A D | open_plus.py | 23 f = open("testfile", "w+b") variable 30 f = open("testfile", "w+b") variable 37 f = open("testfile", "r+b") variable
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | try_finally_return2.py | 5 def f(): function 15 def f(): function 29 def f(): function 43 def f(): function 58 def f(): function 72 def f(): function 87 def f(): function 98 def f(): function
|
A D | try_finally_return3.py | 5 def f(): function 17 def f(): function 33 def f(): function 50 def f(): function 62 def f(): function 74 def f(): function 90 def f(): function
|
A D | try_finally_break.py | 4 def f(): function 18 def f(): function 31 def f(): function 45 def f(): function 62 def f(): function 79 def f(arg): function
|
A D | fun_kwonly.py | 4 def f(*, a): function 10 def f(*, a, b): function 17 def f(a, *, b, c): function 40 def f(a, *, b, **kw): function 47 def f(*a, b, c): function 54 def f(a, *b, c): function 62 def f(*, x=lambda:1): function
|
A D | try_finally_return.py | 26 def f(): function 35 def f(): function 45 def f(): function 60 def f(): function
|
A D | try_finally_return4.py | 5 def f(x): function 23 def f(x): function 42 def f(x): function 67 def f(x): function
|
A D | scope.py | 5 def f(): function 13 def f(): function 24 def f(): function 35 def f(): function
|
A D | with_return.py | 19 def f(): function 26 def f(): function 34 def f(): function 45 def f(): function
|
A D | scope_implicit.py | 4 def f(): function 12 def f(): function 22 def f(): function
|
A D | lambda_defargs.py | 3 f = lambda x=1: x function 7 f = lambda x=y: x function 10 f = lambda x, y=[]: (x, y) function
|
/AliOS-Things-master/components/py_engine/tests/cmdline/ |
A D | cmd_showbc.py | 5 def f(): function 130 def f(): function 136 def f(a=1): function 139 def f(b=2): function 143 def f(): function 156 def f(self): function
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/ |
A D | fsm.c | 71 #define PROTO_NAME(f) ((f)->callbacks->proto_name) argument 78 void fsm_init(fsm *f) { in fsm_init() 91 void fsm_lowerup(fsm *f) { in fsm_lowerup() 119 void fsm_lowerdown(fsm *f) { in fsm_lowerdown() 160 void fsm_open(fsm *f) { in fsm_open() 200 static void terminate_layer(fsm *f, int nextstate) { in terminate_layer() 237 void fsm_close(fsm *f, const char *reason) { in fsm_close() 267 fsm *f = (fsm *) arg; in fsm_timeout() local 318 void fsm_input(fsm *f, u_char *inpacket, int l) { in fsm_input() 611 static void fsm_rtermack(fsm *f) { in fsm_rtermack() [all …]
|
A D | ccp.c | 369 fsm *f = &pcb->ccp_fsm; in ccp_init() local 410 fsm *f = &pcb->ccp_fsm; in ccp_open() local 431 fsm *f = &pcb->ccp_fsm; in ccp_close() local 440 fsm *f = &pcb->ccp_fsm; in ccp_lowerup() local 448 fsm *f = &pcb->ccp_fsm; in ccp_lowerdown() local 456 fsm *f = &pcb->ccp_fsm; in ccp_input() local 521 fsm *f = &pcb->ccp_fsm; in ccp_protrej() local 1459 static void ccp_up(fsm *f) { in ccp_up() 1661 fsm *f; in ccp_datainput() local 1707 fsm *f = &pcb->ccp_fsm; in ccp_resetrequest() local [all …]
|
/AliOS-Things-master/components/vfs/ |
A D | vfs.c | 124 vfs_file_t *f; in vfs_close_without_glock() local 165 vfs_file_t *f; in set_normal_redirect_fd() local 199 vfs_file_t *f; in clear_normal_redirect_fd() local 263 vfs_file_t *f; in vfs_open() local 351 vfs_file_t *f; in vfs_close() local 429 vfs_file_t *f; in vfs_read() local 482 vfs_file_t *f; in vfs_write() local 548 vfs_file_t *f; in vfs_ioctl() local 601 vfs_file_t *f; in vfs_do_pollfd() local 653 vfs_file_t *f; in vfs_lseek() local [all …]
|
/AliOS-Things-master/components/py_engine/tests/micropython/ |
A D | native_try.py | 5 def f(): function 19 def f(): function 33 def f(): function
|
A D | viper_try.py | 5 def f(): function 19 def f(): function 33 def f(): function
|
A D | native_closure.py | 5 def f(): function 20 def f(x): function 33 def f(x): function
|
A D | native_misc.py | 19 def f(a, b): function 27 def f(a, b, c): function 35 def f(a): function
|
/AliOS-Things-master/components/genie_service/genie_port/ |
A D | bt_mesh_custom_log.h | 8 #define BT_DBG(f, ...) printf(f "\n", ##__VA_ARGS__) argument 13 #define BT_INFO(f, ...) printf(f "\n", ##__VA_ARGS__) argument 20 #define BT_WARN(f, ...) printf("[%s]" f "\n", __func__, ##__VA_ARGS__) argument 25 #define BT_ERR(f, ...) printf("[%s]" f "\n", __func__, ##__VA_ARGS__) argument
|
/AliOS-Things-master/components/py_engine/tests/wipy/ |
A D | os.py | 35 f = open("test.txt", "w") variable 40 f = open("test.txt", "r") variable 62 f = open("test.txt", "w") variable 67 f = open("test.txt", "r") variable
|