Home
last modified time | relevance | path

Searched refs:share (Results 1 – 25 of 1059) sorted by relevance

12345678910>>...43

/third_party/curl/lib/
Dshare.c42 struct Curl_share *share = calloc(1, sizeof(struct Curl_share)); in curl_share_init() local
43 if(share) { in curl_share_init()
44 share->magic = CURL_GOOD_SHARE; in curl_share_init()
45 share->specifier |= (1<<CURL_LOCK_DATA_SHARE); in curl_share_init()
46 Curl_init_dnscache(&share->hostcache, 23); in curl_share_init()
49 return share; in curl_share_init()
54 curl_share_setopt(struct Curl_share *share, CURLSHoption option, ...) in curl_share_setopt() argument
63 if(!GOOD_SHARE_HANDLE(share)) in curl_share_setopt()
66 if(share->dirty) in curl_share_setopt()
84 if(!share->cookies) { in curl_share_setopt()
[all …]
/third_party/curl/packages/vms/
Dpcsi_gnv_curl_file_list.txt49 [gnv.usr]share.dir
50 [gnv.usr.share]
51 [gnv.usr.share]man.dir
52 [gnv.usr.share.man]
53 [gnv.usr.share.man]man1.dir
54 [gnv.usr.share.man.man1]
55 [gnv.usr.share.man]man3.dir
56 [gnv.usr.share.man.man3]
70 [gnv.usr.share.man.man1]curl-config.1
71 [gnv.usr.share.man.man1]curl.1
[all …]
Dgnv_link_curl.com79 $ link/share=gnv$curlmsg.exe [.packages.vms]curlmsg.obj
159 $ hp_ssl_libcrypto32 = "sys$share:ssl$libcrypto_shr32.exe"
160 $ hp_ssl_libssl32 = "sys$share:ssl$libssl_shr32.exe"
321 $ try_shr = "sys$share:gss$rtl"
371 $ link/dsf='default_dir'gnv$libcurl.dsf/share='gnv_libcurl_share' -
379 $ link/share='gnv_libcurl_share'/map='default_dir'gnv$libcurl.map -
421 gnv$libcurl/share
451 gnv$libcurl/share
478 gnv$libcurl/share
491 gnv$libcurl/share
[all …]
/third_party/alsa-lib/src/pcm/
Dpcm_share.c150 snd_pcm_share_t *share = list_entry(i, snd_pcm_share_t, list); in _snd_pcm_share_slave_forward() local
151 snd_pcm_t *pcm = share->pcm; in _snd_pcm_share_slave_forward()
152 switch (share->state) { in _snd_pcm_share_slave_forward()
166 if (share->state != SND_PCM_STATE_RUNNING) in _snd_pcm_share_slave_forward()
199 snd_pcm_share_t *share = pcm->private_data; in _snd_pcm_share_missing() local
200 snd_pcm_share_slave_t *slave = share->slave; in _snd_pcm_share_missing()
209 switch (share->state) { in _snd_pcm_share_missing()
219 share->hw_ptr = slave->hw_ptr; in _snd_pcm_share_missing()
222 …_snd_pcm_share_stop(pcm, share->state == SND_PCM_STATE_DRAINING ? SND_PCM_STATE_SETUP : SND_PCM_ST… in _snd_pcm_share_missing()
253 switch (share->state) { in _snd_pcm_share_missing()
[all …]
/third_party/alsa-lib/src/conf/
DBUILD.gn11 relative_install_dir = "audio/alsa/share"
20 relative_install_dir = "audio/alsa/share"
29 relative_install_dir = "audio/alsa/share/pcm"
38 relative_install_dir = "audio/alsa/share/pcm"
47 relative_install_dir = "audio/alsa/share/pcm"
56 relative_install_dir = "audio/alsa/share/pcm"
65 relative_install_dir = "audio/alsa/share/pcm"
74 relative_install_dir = "audio/alsa/share/pcm"
83 relative_install_dir = "audio/alsa/share/pcm"
92 relative_install_dir = "audio/alsa/share/pcm"
[all …]
/third_party/curl/tests/libtest/
Dlib586.c31 CURLSH *share; member
115 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
139 CURLSH *share; in test() local
154 share = curl_share_init(); in test()
155 if(!share) { in test()
163 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
167 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
171 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
175 scode = curl_share_setopt(share, CURLSHOPT_SHARE, in test()
181 curl_share_cleanup(share); in test()
[all …]
Dlib506.c33 CURLSH *share; member
149 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
183 CURLSH *share; in test() local
201 share = curl_share_init(); in test()
202 if(!share) { in test()
210 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
214 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
218 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
222 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test()
226 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); in test()
[all …]
Dlib1554.c49 CURLSH *share = NULL; in test() local
54 share = curl_share_init(); in test()
55 if(!share) { in test()
60 curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT); in test()
61 curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
62 curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
73 curl_easy_setopt(curl, CURLOPT_SHARE, share); in test()
91 curl_share_cleanup(share); in test()
Dlib3103.c31 CURLSH *share; in test() local
36 share = curl_share_init(); in test()
37 curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test()
40 test_setopt(curl, CURLOPT_SHARE, share); in test()
62 curl_share_cleanup(share); in test()
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dpthread_attr_get.c114 int share = 0; in pthread_barrierattr_getpshared_0100() local
119 ret = pthread_barrierattr_setpshared(&attr, share); in pthread_barrierattr_getpshared_0100()
124 EXPECT_EQ("pthread_barrierattr_getpshared_0100", result, share); in pthread_barrierattr_getpshared_0100()
126 share = 1; in pthread_barrierattr_getpshared_0100()
127 ret = pthread_barrierattr_setpshared(&attr, share); in pthread_barrierattr_getpshared_0100()
131 EXPECT_EQ("pthread_barrierattr_getpshared_0100", result, share); in pthread_barrierattr_getpshared_0100()
168 int share = 0; in pthread_condattr_getpshared_0100() local
173 ret = pthread_condattr_setpshared(&attr, share); in pthread_condattr_getpshared_0100()
178 EXPECT_EQ("pthread_condattr_getpshared_0100", result, share); in pthread_condattr_getpshared_0100()
180 share = 1; in pthread_condattr_getpshared_0100()
[all …]
/third_party/curl/docs/libcurl/
Dlibcurl-share.md4 Title: libcurl-share
18 libcurl-share - how to use the share interface
22 This is an overview on how to use the libcurl share interface in your C
26 All functions in the share interface are prefixed with curl_share.
30 The share interface was added to enable sharing of data between curl handles.
34 You can have multiple easy handles share data between them. Have them update
44 You tell the shared object what data you want it to share by using
47 Since you can use this share from multiple threads, and libcurl has no
52 Then, you make an easy handle to use this share, you set the
54 share handle. You can make any number of easy handles share the same share
[all …]
Dcurl_share_init.md27 to all the other share-functions, sometimes referred to as a share handle in
29 call to curl_share_cleanup(3) when all operations using the share are
32 This *share handle* is what you pass to curl using the
34 specific curl handle use the data in this share.
42 CURLSH *share = curl_share_init();
43 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
56 and therefore the share object was not created.
Dcurl_share_cleanup.md26 This function deletes a shared object. The share handle cannot be used anymore
38 CURLSH *share = curl_share_init();
39 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
40 /* use the share, then ... */
41 curl_share_cleanup(share);
54 share object is not deleted.
/third_party/typescript/tests/baselines/reference/
DdeepExcessPropertyCheckingWhenTargetIsIntersection.types34 TestComponent({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }});
35 >TestComponent({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }}) : null
37 >{icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }} : { icon: { props: { IN…
39 >{ props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } } : { props: { INVALID_PROP_NAME:…
41 >{ INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } : { INVALID_PROP_NAME: string; ariaLabel: …
43 >'share' : "share"
58 TestComponent2({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }});
59 >TestComponent2({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }}) : null
61 >{icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }} : { icon: { props: { IN…
63 >{ props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } } : { props: { INVALID_PROP_NAME:…
[all …]
DprivateNameDuplicateField.errors.txt8 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
9 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
10 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
11 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
20 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
21 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
22 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
23 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
29 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
30 … TS2804: Duplicate identifier '#foo'. Static and instance elements cannot share the same private n…
[all …]
DnonObjectUnionNestedExcessPropertyCheck.types20 const propB1: IProps | number = { INVALID_PROP_NAME: 'share', iconProp: 'test' };
22 >{ INVALID_PROP_NAME: 'share', iconProp: 'test' } : { INVALID_PROP_NAME: string; iconProp: string; }
24 >'share' : "share"
40 const propA1: INestedProps | number = { nestedProps: { INVALID_PROP_NAME: 'share', iconProp: 'test'…
42 >{ nestedProps: { INVALID_PROP_NAME: 'share', iconProp: 'test' } } : { nestedProps: { INVALID_PROP_…
44 >{ INVALID_PROP_NAME: 'share', iconProp: 'test' } : { INVALID_PROP_NAME: string; iconProp: string; }
46 >'share' : "share"
/third_party/mesa3d/.gitlab-ci/container/
Dcreate-rootfs.sh120 cp /usr/share/zoneinfo/Etc/UTC /etc/localtime
144 rm -rf /usr/share/doc/*
145 rm -rf /usr/share/locale/*
146 rm -rf /usr/share/X11/locale/*
147 rm -rf /usr/share/man
148 rm -rf /usr/share/i18n/*
149 rm -rf /usr/share/info/*
150 rm -rf /usr/share/lintian/*
151 rm -rf /usr/share/common-licenses/*
152 rm -rf /usr/share/mime/*
[all …]
/third_party/curl/docs/libcurl/opts/
DCURLOPT_SHARE.md14 CURLOPT_SHARE - share handle to use
21 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SHARE, CURLSH *share);
26 Pass a *share* handle as a parameter. The share handle must have been
29 the data to itself. This enables several curl handles to share data. If the
31 the locking methods in the share handle. See curl_share_setopt(3) for
34 If you add a share that is set to share cookies, your easy handle uses that
36 that was using cookies (or change to another object that does not share
39 Data that the share object is not set to share is dealt with the usual way, as
40 if no share was used.
42 Set this option to NULL again to stop using that share object.
DCURLSHOPT_SHARE.md16 CURLSHOPT_SHARE - add data to share
23 CURLSHcode curl_share_setopt(CURLSH *share, CURLSHOPT_SHARE, long type);
29 and kept in the share object that was created with curl_share_init(3).
32 the share object share multiple types of data. Unset a type again by setting
45 the same multi handle share DNS cache by default without using this option.
57 Put the connection cache in the share object and make all easy handles using
58 this share object share the connection cache.
60 It is not supported to share connections between multiple concurrent threads.
75 The Public Suffix List stored in the share object is made available to all
88 It is not supported to share the HSTS between multiple concurrent threads.
[all …]
/third_party/libwebsockets/contrib/
Dcross-openwrt-makefile87 $(INSTALL_DIR) $(1)/usr/share/libwebsockets-test-server
88 …$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libwebsockets-test-server/favicon.ico $(1)/usr/share/…
89 …$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libwebsockets-test-server/leaf.jpg $(1)/usr/share/lib…
90 …$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libwebsockets-test-server/libwebsockets.org-logo.png …
91 …NSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libwebsockets-test-server/libwebsockets-test-server.key.…
92 …(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libwebsockets-test-server/libwebsockets-test-server.pe…
93 …$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libwebsockets-test-server/test.html $(1)/usr/share/li…
/third_party/curl/tests/data/
Dtest50692 lock: share [Pigs in space]: 0
93 unlock: share [Pigs in space]: 1
112 lock: share [Pigs in space]: 14
113 unlock: share [Pigs in space]: 15
116 lock: share [Pigs in space]: 16
117 unlock: share [Pigs in space]: 17
141 lock: share [Pigs in space]: 38
142 unlock: share [Pigs in space]: 39
145 lock: share [Pigs in space]: 40
146 unlock: share [Pigs in space]: 41
[all …]
/third_party/curl/docs/examples/
Dshared-connection-cache.c51 CURLSH *share; in main() local
54 share = curl_share_init(); in main()
55 curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT); in main()
57 curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in main()
58 curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in main()
71 curl_easy_setopt(curl, CURLOPT_SHARE, share); in main()
85 curl_share_cleanup(share); in main()
/third_party/skia/third_party/externals/angle2/extensions/
DEGL_ANGLE_display_texture_share_group.txt35 This extension allows for the creation of OpenGL ES contexts that share
37 of sharing textures can be used in conjuction with regular share groups.
63 eglCreateContext is not NULL, all contexts within the share group must have
69 (1) What happens to the shared textures when a context in the global share
72 RESOLOVED: When the last context in the global texture share group is
73 destroyed, all textures in the global texture share group are released. If
74 a new context is created in the global texture share group, no textures
77 This mirrors how regular share groups work, releasing all objects when the
DEGL_ANGLE_display_semaphore_share_group.txt35 This extension allows for the creation of OpenGL ES contexts that share
37 of sharing semaphores can be used in conjuction with regular share groups.
63 eglCreateContext is not NULL, all contexts within the share group must have
69 (1) What happens to the shared semaphores when a context in the global share
72 RESOLOVED: When the last context in the global semaphore share group is
73 destroyed, all semaphores in the global semaphore share group are released. If
74 a new context is created in the global semaphore share group, no semaphores
77 This mirrors how regular share groups work, releasing all objects when the
/third_party/skia/third_party/externals/egl-registry/extensions/ANGLE/
DEGL_ANGLE_surface_d3d_texture_2d_share_handle.txt41 backed by Direct3D 2D textures. For such surfaces, a D3D share
65 EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE pointer Direct3D share handle
70 share handle, or NULL if a share handle for the surface is not
71 available. The share handle must be queried using
73 created with this share handle, ensure that all rendering
76 The Direct3D share handle may be passed as the pSharedHandle

12345678910>>...43