Home
last modified time | relevance | path

Searched refs:send (Results 1 – 25 of 128) sorted by relevance

123456

/AliOS-Things-master/components/py_engine/tests/pyb/
A Dcan.py69 can.send("", 42)
74 can.send("1234", 42)
79 can.send("01234567", 42)
84 can.send("abc", 42)
92 can.send("abc", 1)
94 can.send("def", 1)
98 can.send("abc", 1)
105 can.send("abc", 1)
112 can.send("abc", 1)
119 can.send("abc", 1)
[all …]
A Dcan2.py18 bus2.send("", 1, rtr=True)
20 bus2.send("", 2, rtr=True)
22 bus2.send("", 3, rtr=True)
24 bus2.send("", 4, rtr=True)
/AliOS-Things-master/components/py_engine/tests/basics/
A Dgenerator_send.py9 g.send(1)
13 print(g.send(None))
14 print(g.send(100))
15 print(g.send(200))
27 g.send(None)
28 g.send(1)
29 g.send(1)
31 g.send(1)
35 g.send(1)
A Dgen_yield_from_ducktype.py31 return self.send(None)
33 def send(self, val): member in Incrementer
43 print(g.send(5))
44 print(g.send(100))
A Dasync_with_break.py20 print(o.send(None))
37 print(o.send(None))
57 print(o.send(None))
A Dasync_with_return.py17 o.send(None)
31 o.send(None)
48 o.send(None)
A Dasync_with.py16 o.send(None)
27 o.send(None)
37 o.send(None)
A Dasync_await2.py26 print('return from send:', coro.send(None))
28 coro.send('message from main')
A Dasync_def.py14 coro.send(None)
A Dgen_yield_from_send.py10 print("yielded:", g.send("val"))
A Dasync_await.py15 o.send(None)
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/httpserver/
A Dhttp_test_server.js18 res.send("something");
21 res.send(JSON.stringify(req.query));
29 res.send('POST: ' + req.body);
37 res.send('PUT: ' + req.body);
44 res.send("DELETE: " + req.body);
/AliOS-Things-master/components/py_engine/engine/extmod/webrepl/
A Dwebsocket_helper.py51 sock.send(
58 sock.send(respkey)
59 sock.send("\r\n\r\n")
/AliOS-Things-master/components/amp/ui/render/include/
A Dmodel_bind.h13 MODEL_DATA_SEND_TO_VM_F send; member
16 int model_data_bind_init(MODEL_DATA_SEND_TO_VM_F send);
A Dview_bind.h17 VIEW_SEND_TO_VM_F send; member
22 …iew_data_bind_init(VIEW_DATA_BIND_VM_F bind, VIEW_DATA_UNBIND_VM_F unbind, VIEW_SEND_TO_VM_F send);
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/utils/ui/
A Dmodel_bind.c14 int model_data_bind_init(MODEL_DATA_SEND_TO_VM_F send) in model_data_bind_init() argument
16 if (send == NULL) { in model_data_bind_init()
21 g_model_bind_proc.send = send; in model_data_bind_init()
50 if (g_model_bind_proc.send == NULL) { in model_data_send_to_vm()
55 return g_model_bind_proc.send(msg, len); in model_data_send_to_vm()
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/utils/ui/
A Dmodel_bind.c12 int model_data_bind_init(MODEL_DATA_SEND_TO_VM_F send) in model_data_bind_init() argument
14 if (send == NULL) { in model_data_bind_init()
19 g_model_bind_proc.send = send; in model_data_bind_init()
48 if (g_model_bind_proc.send == NULL) { in model_data_send_to_vm()
53 return g_model_bind_proc.send(msg, len); in model_data_send_to_vm()
/AliOS-Things-master/components/py_engine/tests/multi_net/
A Dtcp_data.py17 s2.send(b"server to client")
26 s.send(b"client to server")
/AliOS-Things-master/components/py_engine/tests/misc/
A Dsys_settrace_generator.py52 r += gen.send(None)
56 r += gen.send(None)
/AliOS-Things-master/components/amp/libjs/lib/
A Dcan.js47 send(txheader, data) { method in HW_CAN
51 __native.CAN.send(this.canInstance, txheader, data);
A Dtcp.js56 send(options) { method in TCPClient
63 __native.TCP.send(this.tcpClientInstance, options.message, function(ret) {
/AliOS-Things-master/components/amp/test/
A Dtest_tcp.js31 if(!tcpSocket || !tcpSocket.send || !tcpSocket.close || !tcpSocket.on || !tcpSocket.reconnect) {
71 tcpSocket.send({
A Dtest_udp.js22 if(!udpSocket || !udpSocket.bind || !udpSocket.send || !udpSocket.close || !udpSocket.on) {
60 udpSocket.send({
/AliOS-Things-master/components/amp/jslib/src/
A Dtcp.js43 send(options) { method in TCPClient
51 TCP.send(this.tcpClientInstance, options.message, function(ret) {
/AliOS-Things-master/components/a2sa/src/driver/platform/rtos/
A Dtemplate.c160 uint8_t *send = aos_malloc(send_size); in playback_open() local
163 if (playback == NULL || codec == NULL || send == NULL || ring_buf == NULL) { in playback_open()
210 if (send) { in playback_open()
211 aos_free(send); in playback_open()

Completed in 25 milliseconds

123456