Home
last modified time | relevance | path

Searched refs:how (Results 1 – 25 of 119) sorted by relevance

12345

/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/blast/
A Dblast.h38 typedef unsigned (*blast_in)(void *how, unsigned char **buf);
39 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
A Dblast.c432 local unsigned inf(void *how, unsigned char **buf) in inf() argument
437 return fread(hold, 1, CHUNK, (FILE *)how); in inf()
440 local int outf(void *how, unsigned char *buf, unsigned len) in outf() argument
442 return fwrite(buf, 1, len, (FILE *)how) != len; in outf()
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Dgzread.c199 state->how = GZIP;
220 state->how = COPY;
289 state->how = LOOK; /* ready for next stream, once have is 0 (leave
309 if (state->how == LOOK) { /* look for gzip header */
315 if (state->how == COPY) { /* straight copy */
320 else if (state->how == GZIP) { /* decompress */
416 else if (state->how == LOOK || len < (state->size << 1)) {
426 else if (state->how == COPY) { /* read directly */
619 if (state->how == LOOK && state->have == 0)
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/
A DTODO9 o Write documentation on how do extend tags, and how the custom field
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/
A Dgzread.c142 state->how = GZIP;
165 state->how = COPY;
217 state->how = LOOK;
235 switch(state->how) {
239 if (state->how == LOOK)
338 else if (state->how == LOOK || n < (state->size << 1)) {
348 else if (state->how == COPY) { /* read directly */
619 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0)
/AliOS-Things-master/components/py_engine/engine/lib/tinytest/
A DREADME8 It knows how to fork before running certain tests, and it makes
11 For info on how to use it, check out tinytest_demo.c.
/AliOS-Things-master/components/mbedtls/programs/
A DREADME.md9 …ning: this program illustrates how to use low-level functions in the library. It should not be tak…
47 … channel demonstrators (client, server). This pair of programs illustrates how to set up a secure …
53 * [`pkey/dh_genprime.c`](pkey/dh_genprime.c): shows how to use the bignum (`mpi`) interface to gene…
59 * [`random/gen_entropy.c`](random/gen_entropy.c): shows how to use the default entropy sources to g…
62 …andom/gen_random_ctr_drbg.c): shows how to use the default entropy sources to seed a pseudorandom …
88 …c`, and then look inside `ssl/ssl_client2.c` or `ssl/ssl_server2.c` to see how to use the specific…
102 …_test.c`](test/ssl_cert_test.c): demonstrates how to verify X.509 certificates, and (for RSA keys …
/AliOS-Things-master/components/netmgr/net/include/sys/
A Dsocket.h83 int net_shutdown(int s, int how);
121 static inline int shutdown(int s, int how) in shutdown() argument
123 return net_shutdown(s, how); in shutdown()
210 #define shutdown(s,how) net_shutdown(s,how) argument
/AliOS-Things-master/components/ble_mesh/bt_mesh/
A DKconfig63 This option determines for how long the local node advertises
77 This option specifies how many Proxy Filter entries the local
101 This option specifies how many subnets a Mesh network can
109 This option specifies how many application keys the device can
117 This option specifies how many application keys each model can
125 This option specifies how many group addresses each model can
133 This option specifies how many Label UUIDs can be stored.
179 how many hours the node has been in the state. This doesn't
186 option allows specifying a divider, i.e. how many intervals
443 This value defines in seconds how soon any pending changes
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/infback9/
A DREADME1 See infback9.h for what this is and how to use it.
/AliOS-Things-master/components/SDL2/docs/
A DREADME-platforms.md4 We maintain the list of supported platforms on our wiki now, and how to
A DREADME-nacl.md23 As an example of how to create a deployable app a Makefile project is provided
56 script will give you instructions on how to do that with Python).
83 For more information on how nacl_io and mount points work, see:
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/example/
A DREADME.md3 These are some examples about how to use RUY.
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/
A Dgradle.properties7 # For more details on how to configure your build environment visit
/AliOS-Things-master/components/netmgr/net/
A Dnet_impl.c30 int net_shutdown(int s, int how) in net_shutdown() argument
33 return lwip_shutdown(s, how); in net_shutdown()
/AliOS-Things-master/components/amp_adapter/include/
A Daos_socket.h217 int aos_socket_shutdown(int socket, int how);
/AliOS-Things-master/components/amp/components/at/
A DREADME.md23 6. Please refer to app/example/atapp for example on how to use at component.
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/tags/
A DREADME77 To see how the client module operates, there are three "fake"
100 will direct you how to install your own tag values, define their
102 how to implement multi-valued tags, single-valued tags, and ASCII tags.
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/microfrontend/lib/
A DREADME.md44 An example of how to use the frontend is provided in frontend_main.cc and its
61 The binary frontend_memmap_main shows a sample usage of how to avoid all the
/AliOS-Things-master/components/py_engine/external/unzip/internal/
A Dgzguts.h102 int how; /* 0: get header, 1: copy, 2: decompress */ member
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/
A DREADME8 cross-platform demo programs that show how to use the libpng reference
10 a very simple example that that shows how a standard file-viewer might use
12 how a web browser might be written. wpng is a simple command-line program
49 primary purpose is to illustrate how to use libpng to add PNG support to
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/examples/
A DREADME.md1 # how to use examples
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/
A DFILES9 An example of how an Ethernet device driver could look. This
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/
A Dsockets.h487 int lwip_shutdown(int s, int how);
518 #define shutdown(s,how) lwip_shutdown(s,how) argument
/AliOS-Things-master/components/lwip/lwip2.0.0/api/
A Dapi_lib.c80 static err_t netconn_close_shutdown(struct netconn *conn, u8_t how);
792 netconn_close_shutdown(struct netconn *conn, u8_t how) in netconn_close_shutdown() argument
796 LWIP_UNUSED_ARG(how); in netconn_close_shutdown()
804 API_MSG_VAR_REF(msg).msg.sd.shut = how; in netconn_close_shutdown()

Completed in 26 milliseconds

12345