Home
last modified time | relevance | path

Searched refs:at (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/AliOS-Things-master/components/ble_host/bt_host/host/
A Dat.c24 if (at->buf[at->pos] == ',') { in next_list()
43 while (at->buf[at->pos] == ' ') { in skip_space()
103 at->buf[at->pos++] = *str; in get_cmd_value()
109 at->buf[at->pos] = '\0'; in get_cmd_value()
133 at->buf[at->pos++] = *str; in get_response_string()
139 at->buf[at->pos] = '\0'; in get_response_string()
222 at->resp(at, buf); in at_state_process_cmd()
440 if (at->buf[at->pos] != '(') { in at_open_list()
452 if (at->buf[at->pos] != ')') { in at_close_list()
468 if (at->buf[at->pos] != '"') { in at_list_get_string()
[all …]
A Dat.h76 typedef int (*at_resp_cb_t)(struct at_client *at, struct net_buf *buf);
83 typedef int (*at_finish_cb_t)(struct at_client *at, enum at_result result,
85 typedef int (*parse_val_t)(struct at_client *at);
103 void at_register(struct at_client *at, at_resp_cb_t resp,
106 int at_get_number(struct at_client *at, bt_u32_t *val);
108 int at_parse_input(struct at_client *at, struct net_buf *buf);
110 int at_parse_cmd_input(struct at_client *at, struct net_buf *buf,
115 int at_list_get_string(struct at_client *at, char *name, u8_t len);
116 int at_close_list(struct at_client *at);
117 int at_open_list(struct at_client *at);
[all …]
A Dhfp_hf.c56 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in hf_slc_error()
74 at_register(&hf->at, resp, finish); in hfp_hf_send_cmd()
104 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in brsf_handle()
141 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in cind_handle_values()
226 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in ag_indicator_handle_values()
350 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in ring_handle()
404 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in cmd_complete()
547 hf_slc_error(&hf->at); in hf_slc_establish()
634 if (at_parse_input(&hf->at, buf) < 0) { in hfp_hf_recv()
658 hf->at.buf = hf->hf_buffer; in bt_hfp_hf_accept()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/
A DAUTHORS2 - Alan Browning (browning at google dot com)
3 - Charles Munger (clm at google dot com)
6 - Hui Su (huisu at google dot com)
7 - James Zern (jzern at google dot com)
8 - Jan Engelhardt (jengelh at medozas dot de)
9 - Jehan (jehan at girinstud dot io)
16 - Mans Rullgard (mans at mansr dot com)
18 - Martin Olsson (mnemo at minimum dot se)
28 - Sam Clegg (sbc at chromium dot org)
29 - Scott Hancher (seh at google dot com)
[all …]
/AliOS-Things-master/components/amp/example-js/
A Dat.js1 var at = require('at'); variable
4 var s = at.atReadLine(-1); /* 从AT串口读一行字符串,参数为读字符串超时时间(单位毫秒,-1表示一直等待) */
9 var s = at.atRead(1, -1); /* 从AT串口读字符串,第一个参数为读取字符串的长度,
13 at.atSendNoReply('log print is open \n', 1);
15 var log = at.atRead(1, -1);
17 at.atSendNoReply('open log print \n', 1);
19 at.atSendNoReply('close log print \n', 1);
21 at.atSendNoReply('AT Command error\n', 1);
24 at.atSendNoReply('AT Command error\n', 1);
29 at.atSetEcho(1) /* 设置是否显示回显:0表示关闭回显,1表示打开回显 */
[all …]
/AliOS-Things-master/components/amp/components/at/
A DREADME.md1 # README.md: at
6 ├── at.c
7 ├── at/at.h
8 ├── at.mk
15 `at` is an AT component for sending and receiving AT command over uart.
18 1. Include at/at.h header file;
19 2. Declare the at module in makefile;
21 4. Initialize at (at.init API);
22 5. at APIS: at_send, at_recv, at_send_raw, etc.
23 6. Please refer to app/example/atapp for example on how to use at component.
[all …]
/AliOS-Things-master/components/oss/src/model/
A DObjectMetaData.cc49 return metaData_.at(Http::LAST_MODIFIED); in LastModified()
57 return metaData_.at(Http::EXPIRES); in ExpirationTime()
65 return atoll(metaData_.at(Http::CONTENT_LENGTH).c_str()); in ContentLength()
73 return metaData_.at(Http::CONTENT_TYPE); in ContentType()
81 return metaData_.at(Http::CONTENT_ENCODING); in ContentEncoding()
89 return metaData_.at(Http::CACHE_CONTROL); in CacheControl()
97 return metaData_.at(Http::CONTENT_DISPOSITION); in ContentDisposition()
105 return metaData_.at(Http::ETAG); in ETag()
113 return metaData_.at(Http::CONTENT_MD5); in ContentMd5()
129 return metaData_.at("x-oss-object-type"); in ObjectType()
[all …]
A DAppendObjectResult.cc37 length_ = std::strtoull(headers.at("x-oss-next-append-position").c_str(), nullptr, 10); in AppendObjectResult()
43 crc64_ = std::strtoull(headers.at("x-oss-hash-crc64ecma").c_str(), nullptr, 10); in AppendObjectResult()
A DGetSymlinkResult.cc40 symlink_ = headers.at("x-oss-symlink-target"); in GetSymlinkResult()
44 etag_ = TrimQuotes(headers.at(Http::ETAG).c_str()); in GetSymlinkResult()
A DPutObjectResult.cc34 eTag_ = TrimQuotes(header.at(Http::ETAG).c_str()); in PutObjectResult()
38 crc64_ = std::strtoull(header.at("x-oss-hash-crc64ecma").c_str(), nullptr, 10); in PutObjectResult()
A DCompleteMultipartUploadResult.cc47 contentType = ToLower(headers.at(Http::CONTENT_TYPE).c_str()); in CompleteMultipartUploadResult()
61 crc64_ = std::strtoull(headers.at("x-oss-hash-crc64ecma").c_str(), nullptr, 10); in CompleteMultipartUploadResult()
65 eTag_ = TrimQuotes(headers.at(Http::ETAG).c_str()); in CompleteMultipartUploadResult()
/AliOS-Things-master/components/py_engine/engine/lib/re1.5/
A Dcompilecode.c7 #define INSERT_CODE(at, num, pc) \ argument
8 ((code ? memmove(code + at + num, code + at, pc - at) : 0), pc += num)
9 #define REL(at, to) (to - at - 2) argument
10 #define EMIT(at, byte) (code ? (code[at] = byte) : (at)) argument
11 #define EMIT_CHECKED(at, byte) (_emit_checked(at, code, byte, &err)) argument
14 static void _emit_checked(int at, char *code, int val, bool *err) { in _emit_checked() argument
17 code[at] = val; in _emit_checked()
/AliOS-Things-master/components/SDL2/src/gfx/
A DREADME367 cal at swipnet.se - thanks Anders.
385 mike at malva.ua - Thanks Mike.
391 koprok at dir.bg - Thanks Todor.
400 dries at ulyssis.org - Thanks Dries.
403 water451 at gmail.com - Thanks Brian.
406 marco.wertz at gmx.de - Thanks Marco.
412 cisc at broadpark.no - Thanks CISC.
449 at artha.org - thanks Luca.
452 at gmx dot net - thanks Jan.
461 beuc at beuc dot net - thanks Sylvain.
[all …]
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dtest262_errors.txt7 …tax-err.js:47: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
11 …tax-err.js:28: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
12 …tax-err.js:28: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
17 …tax-err.js:48: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
18 …tax-err.js:49: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
19 …tax-err.js:32: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
21 …tax-err.js:54: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
22 …tax-err.js:50: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
26 …tax-err.js:28: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
29 …tax-err.js:49: Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/stream/
A DREADME6 Here at Shutterfly we have augmented the file based tiff library to support
14 provides a helper function (getTiffHandle) to query the handle at any time.
17 object. The class calls TIFFClose at destruction time.
22 fairly tested at this point and is used internally in Shutterfly imaging
25 We at Shutterfly believe this software has benefits to the larger community
/AliOS-Things-master/components/py_engine/tests/perf_bench/
A Dbm_pidigits.py10 aq, ar, as_, at = a
12 return (aq * bq, aq * br + ar * bt, as_ * bq + at * bs, as_ * br + at * bt)
/AliOS-Things-master/components/jsoncpp/test/data/
A Dlegacy_test_preserve_comment_01.expected2 at the beginning of the file.
9 /* A comment at
A Dlegacy_test_preserve_comment_01.json2 at the beginning of the file.
12 /* A comment at
/AliOS-Things-master/components/oss/src/
A DOssResult.cc31 requestId_ = header.at("x-oss-request-id"); in OssResult()
44 versionId_ = header.at("x-oss-version-id"); in OssObjectResult()
/AliOS-Things-master/components/SDL2/docs/
A DREADME-hg.md8 at the Mercurial website ( https://www.mercurial-scm.org/ ) for more
17 There is a web interface to the subversion repository at:
20 There is an RSS feed available at that URL, for those that want to
A DREADME-linux.md5 enabled dynamically at runtime depending on the available features on the target
8 at runtime, and you won't get a missing library error, at least with the
28 - libsamplerate0-dev lets SDL optionally link to libresamplerate at runtime
33 it at all. You can do "sudo apt-get install libdirectfb-dev" and fix the
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A Dconfig.h.in69 /* Turn on ARM Neon optimizations at run-time */
72 /* Check for ARM Neon support at run-time */
81 /* Turn on MIPS MSA optimizations at run-time */
84 /* Check for MIPS MSA support at run-time */
90 /* Turn on POWERPC VSX optimizations at run-time */
93 /* Check for POWERPC VSX support at run-time */
/AliOS-Things-master/components/SDL2/
A DINSTALL.txt8 * Read the FAQ at https://wiki.libsdl.org/moin.fcg/FAQWindows
29 2. Look at the example programs in ./test, and check out the online
30 documentation at https://wiki.libsdl.org/
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/core/
A Dservicerequest_ut.cc94 EXPECT_TRUE(pc.at("km") == "vm"); in TEST()
95 EXPECT_TRUE(pc.at("kn") == "vn"); in TEST()
98 EXPECT_EQ(bp.at("name"), "value"); in TEST()
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/net_os/
A Dnet_atomic.h9 static __INLINE void atomic_set(atomic32_t *at, int val) in atomic_set() argument
13 __LDREXW((volatile uint32_t *)&at->counter); in atomic_set()
14 } while ((ret = __STREXW(val, (volatile uint32_t *)&at->counter))); in atomic_set()

Completed in 29 milliseconds

12345678910>>...14