Home
last modified time | relevance | path

Searched refs:scheme (Results 1 – 25 of 57) sorted by relevance

123

/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_compress.c161 TIFFSetCompressionScheme(TIFF* tif, int scheme) in TIFFSetCompressionScheme() argument
163 const TIFFCodec *c = TIFFFindCODEC((uint16) scheme); in TIFFSetCompressionScheme()
172 return (c ? (*c->init)(tif, scheme) : 1); in TIFFSetCompressionScheme()
187 TIFFFindCODEC(uint16 scheme) in TIFFFindCODEC() argument
193 if (cd->info->scheme == scheme) in TIFFFindCODEC()
196 if (c->scheme == scheme) in TIFFFindCODEC()
202 TIFFRegisterCODEC(uint16 scheme, const char* name, TIFFInitMethod init) in TIFFRegisterCODEC() argument
212 cd->info->scheme = scheme; in TIFFRegisterCODEC()
273 if (TIFFIsCODECConfigured(c->scheme)) { in TIFFGetConfiguredCODECs()
A Dtif_codec.c119 NotConfigured(TIFF* tif, int scheme) in NotConfigured() argument
121 (void) scheme; in NotConfigured()
143 TIFFIsCODECConfigured(uint16 scheme) in TIFFIsCODECConfigured() argument
145 const TIFFCodec* codec = TIFFFindCODEC(scheme); in TIFFIsCODECConfigured()
A Dtif_jpeg_12.c10 TIFFInitJPEG_12(TIFF* tif, int scheme);
16 int TIFFReInitJPEG_12( TIFF *tif, int scheme, int is_encode ) in TIFFReInitJPEG_12() argument
21 assert(scheme == COMPRESSION_JPEG); in TIFFReInitJPEG_12()
A Dtif_dumpmode.c124 TIFFInitDumpMode(TIFF* tif, int scheme) in TIFFInitDumpMode() argument
126 (void) scheme; in TIFFInitDumpMode()
A Dtif_jbig.c182 int TIFFInitJBIG(TIFF* tif, int scheme) in TIFFInitJBIG() argument
184 assert(scheme == COMPRESSION_JBIG); in TIFFInitJBIG()
A Dtif_next.c171 TIFFInitNeXT(TIFF* tif, int scheme) in TIFFInitNeXT() argument
173 (void) scheme; in TIFFInitNeXT()
A Dtif_thunder.c190 TIFFInitThunderScan(TIFF* tif, int scheme) in TIFFInitThunderScan() argument
192 (void) scheme; in TIFFInitThunderScan()
/AliOS-Things-master/components/websocket/src/
A Drws_socketpub.c43 if (!socket->scheme) { in rws_socket_connect()
195 rws_string_delete_clean(&s->scheme); in rws_socket_delete()
219 const char * scheme, in rws_socket_set_url() argument
224 rws_string_delete(socket->scheme); in rws_socket_set_url()
225 socket->scheme = rws_string_copy(scheme); in rws_socket_set_url()
237 void rws_socket_set_scheme(rws_socket socket, const char * scheme) { in rws_socket_set_scheme() argument
239 rws_string_delete(socket->scheme); in rws_socket_set_scheme()
240 socket->scheme = rws_string_copy(scheme); in rws_socket_set_scheme()
245 return socket ? socket->scheme : NULL; in rws_socket_get_scheme()
A Drws_socketpriv.c183 if (s->scheme && strcmp(s->scheme, "wss") == 0) { in rws_socket_send()
239 if(s->scheme && strcmp(s->scheme, "wss") == 0) { in rws_socket_recv()
276 if(s->scheme && strcmp(s->scheme, "wss") == 0) { in rws_socket_recv()
506 s->scheme, s->host); in rws_socket_send_handshake()
626 if(s->scheme && strcmp(s->scheme, "wss") == 0) { in rws_socket_work_th_func()
733 if(s->scheme && strcmp(s->scheme, "wss") == 0) in rws_socket_close()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/core/
A Durl_ut.cc21 EXPECT_TRUE(url.scheme() == "abc"); in TEST()
32 EXPECT_TRUE(url.scheme() == ""); in TEST()
43 EXPECT_TRUE(url.scheme() == "abc"); in TEST()
53 EXPECT_TRUE(newurl.scheme() == "abc"); in TEST()
66 EXPECT_TRUE(url.scheme() == "http"); in TEST()
109 EXPECT_TRUE(newurl.scheme() == ""); in TEST()
A Dcommonclient_ut.cc96 EXPECT_TRUE(r.url().scheme() == "https"); in TEST()
147 EXPECT_TRUE(rrr.url().scheme() == "http"); in TEST()
151 EXPECT_TRUE(rrr.url().scheme() == "https"); in TEST()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/
A DUrl.cc79 std::string authority, fragment, path, query, scheme; in fromString() local
83 scheme = str.substr(0, pos); in fromString()
109 setScheme(scheme); in fromString()
149 std::string Url::scheme() const { return scheme_; } in scheme() function in AlibabaCloud::Url
202 void Url::setScheme(const std::string &scheme) { in setScheme() argument
203 if (scheme.empty()) { in setScheme()
207 scheme_ = scheme; in setScheme()
A DServiceRequest.cc163 void ServiceRequest::setScheme(const std::string scheme) { scheme_ = scheme; } in setScheme() argument
165 std::string ServiceRequest::scheme() const { return scheme_; } in scheme() function in AlibabaCloud::ServiceRequest
A DCommonClient.cc122 if (msg.scheme().empty()) { in buildRoaHttpRequest()
125 url.setScheme(msg.scheme()); in buildRoaHttpRequest()
235 if (msg.scheme().empty()) { in buildRpcHttpRequest()
238 url.setScheme(msg.scheme()); in buildRpcHttpRequest()
/AliOS-Things-master/components/oss/src/http/
A DUrl.cc103 std::string authority, fragment, path, query, scheme; in fromString() local
107 scheme = str.substr(0, pos); in fromString()
133 setScheme(scheme); in fromString()
201 std::string Url::scheme() const in scheme() function in Url
275 void Url::setScheme(const std::string & scheme) in setScheme() argument
277 if(scheme.empty()){ in setScheme()
281 scheme_ = scheme; in setScheme()
A DHttpRequest.cc28 std::string Http::SchemeToString(Scheme scheme) in SchemeToString() argument
31 return name[scheme - Http::Scheme::HTTP]; in SchemeToString()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/
A Dtxtvsbin.txt16 were using a crude detection scheme: if more than 80% (4/5) of the bytes
19 limitation of this scheme is the restriction to Latin-based alphabets.
22 are most often misidentified by this scheme; in other words, the rate
24 is low. Another weakness of this scheme is a reduced precision, due to
28 In this article we propose a new, simple detection scheme that features
29 a much increased precision and a near-100% recall. This scheme is
88 considerations. In such cases, a scheme that tolerates a small fraction
/AliOS-Things-master/components/websocket/example/
A Dwebsocket_example.c162 int websoc_cli_test_int(const char *scheme, const char *host, in websoc_cli_test_int() argument
169 if (!scheme || !host || !path) { in websoc_cli_test_int()
184 rws_socket_set_scheme(_socket, scheme); in websoc_cli_test_int()
/AliOS-Things-master/components/oss/include/alibabacloud/oss/http/
A DUrl.h48 std::string scheme() const;
56 void setScheme(const std::string &scheme);
A DHttpType.h49 static std::string SchemeToString(Scheme scheme);
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/include/alibabacloud/core/
A DUrl.h48 std::string scheme() const;
56 void setScheme(const std::string &scheme);
A DServiceRequest.h43 std::string scheme() const;
83 void setScheme(const std::string scheme);
/AliOS-Things-master/components/http/src/
A Dhttp_client.c37 static int httpclient_parse_url(const char *url, char *scheme, size_t max_scheme_len, char *host, s… in httpclient_parse_url() argument
63 memcpy(scheme, scheme_ptr, host_ptr - scheme_ptr); in httpclient_parse_url()
64 scheme[host_ptr - scheme_ptr] = '\0'; in httpclient_parse_url()
187 char scheme[8] = {0}; in httpclient_send_header() local
234 …int res = httpclient_parse_url(url, scheme, sizeof(scheme), host, host_size, &(port), path, path_s… in httpclient_send_header()
727 char scheme[8] = {0}; in httpclient_conn() local
749 …int res = httpclient_parse_url(url, scheme, sizeof(scheme), host, host_size, &(client->remote_port… in httpclient_conn()
757 if (strcmp(scheme, "https") == 0) { in httpclient_conn()
760 else if (strcmp(scheme, "http") == 0) in httpclient_conn()
/AliOS-Things-master/components/websocket/
A DREADME.md72 const char * scheme,
81 |scheme |模式,"ws"或者"wss"|
88 void rws_socket_set_scheme(rws_socket socket, const char * scheme)
94 |scheme |模式,"ws"或者"wss"|
/AliOS-Things-master/components/oss/include/alibabacloud/oss/client/
A DClientConfiguration.h43 Http::Scheme scheme; variable

Completed in 27 milliseconds

123