Home
last modified time | relevance | path

Searched defs:f (Results 1 – 25 of 393) sorted by relevance

12345678910>>...16

/AliOS-Things-master/components/py_engine/tests/io/
A Dfile1.py1 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 Dopen_append.py17 f = open("testfile", "a") variable
21 f = open("testfile") variable
25 f = open("testfile", "a") variable
29 f = open("testfile") variable
A Dfile_seek.py1 f = open("io/data/file1", "rb") variable
21 f = open("io/data/file1", "rt") variable
28 f = open("io/data/file1", "r") variable
A Dfile_readinto.py2 f = open("io/data/file1", "rb") variable
5 f = open("io/data/file2", "rb") variable
10 f = open("io/data/file1", "ab") variable
A Dopen_plus.py23 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 Dtry_finally_return2.py5 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 Dtry_finally_return3.py5 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 Dtry_finally_break.py4 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 Dfun_kwonly.py4 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 Dtry_finally_return.py26 def f(): function
35 def f(): function
45 def f(): function
60 def f(): function
A Dtry_finally_return4.py5 def f(x): function
23 def f(x): function
42 def f(x): function
67 def f(x): function
A Dscope.py5 def f(): function
13 def f(): function
24 def f(): function
35 def f(): function
A Dwith_return.py19 def f(): function
26 def f(): function
34 def f(): function
45 def f(): function
A Dscope_implicit.py4 def f(): function
12 def f(): function
22 def f(): function
A Dlambda_defargs.py3 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 Dcmd_showbc.py5 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 Dfsm.c71 #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 Dccp.c369 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 Dvfs.c124 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 Dnative_try.py5 def f(): function
19 def f(): function
33 def f(): function
A Dviper_try.py5 def f(): function
19 def f(): function
33 def f(): function
A Dnative_closure.py5 def f(): function
20 def f(x): function
33 def f(x): function
A Dnative_misc.py19 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 Dbt_mesh_custom_log.h8 #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 Dos.py35 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

Completed in 23 milliseconds

12345678910>>...16