Home
last modified time | relevance | path

Searched refs:upstream (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/third_party/nghttp2/src/
Dshrpx_mruby_module_env.cc88 auto upstream = downstream->get_upstream(); in env_get_remote_addr() local
89 auto handler = upstream->get_client_handler(); in env_get_remote_addr()
101 auto upstream = downstream->get_upstream(); in env_get_server_port() local
102 auto handler = upstream->get_client_handler(); in env_get_server_port()
113 auto upstream = downstream->get_upstream(); in env_get_server_addr() local
114 auto handler = upstream->get_client_handler(); in env_get_server_addr()
125 auto upstream = downstream->get_upstream(); in env_get_tls_used() local
126 auto handler = upstream->get_client_handler(); in env_get_tls_used()
136 auto upstream = downstream->get_upstream(); in env_get_tls_sni() local
137 auto handler = upstream->get_client_handler(); in env_get_tls_sni()
[all …]
Dshrpx_http2_upstream.cc61 auto upstream = static_cast<Http2Upstream *>(user_data); in on_stream_close_callback() local
63 ULOG(INFO, upstream) << "Stream stream_id=" << stream_id in on_stream_close_callback()
76 upstream->consume(stream_id, req.unconsumed_body_length); in on_stream_close_callback()
81 upstream->remove_downstream(downstream); in on_stream_close_callback()
98 upstream->remove_downstream(downstream); in on_stream_close_callback()
169 if (config->http2.upstream.debug.frame_debug) { in on_header_callback2()
176 auto upstream = static_cast<Http2Upstream *>(user_data); in on_header_callback2() local
195 ULOG(INFO, upstream) << "Too large or many header field size=" in on_header_callback2()
205 if (upstream->error_reply(downstream, 431) != 0) { in on_header_callback2()
238 auto upstream = static_cast<Http2Upstream *>(user_data); in on_invalid_header_callback2() local
[all …]
Dshrpx_https_upstream.cc106 auto &upstreamconf = get_config()->conn.upstream; in on_start_request()
117 auto upstream = static_cast<HttpsUpstream *>(htp->data); in htp_msg_begin() local
118 upstream->on_start_request(); in htp_msg_begin()
125 auto upstream = static_cast<HttpsUpstream *>(htp->data); in htp_uricb() local
126 auto downstream = upstream->get_downstream(); in htp_uricb()
137 ULOG(INFO, upstream) << "Too large URI size=" in htp_uricb()
162 auto upstream = static_cast<HttpsUpstream *>(htp->data); in htp_hdr_keycb() local
163 auto downstream = upstream->get_downstream(); in htp_hdr_keycb()
169 ULOG(INFO, upstream) << "Too large header block size=" in htp_hdr_keycb()
185 ULOG(INFO, upstream) in htp_hdr_keycb()
[all …]
Dshrpx_http_downstream_connection.cc62 auto upstream = downstream->get_upstream(); in timeoutcb() local
63 auto handler = upstream->get_client_handler(); in timeoutcb()
69 if (upstream->downstream_error(dconn, Downstream::EVENT_TIMEOUT) != 0) { in timeoutcb()
78 auto upstream = downstream->get_upstream(); in retry_downstream_connection() local
79 auto handler = upstream->get_client_handler(); in retry_downstream_connection()
112 rv = upstream->on_downstream_abort_request_with_https_redirect(downstream); in retry_downstream_connection()
114 rv = upstream->on_downstream_abort_request(downstream, status_code); in retry_downstream_connection()
153 auto upstream = downstream->get_upstream(); in readcb() local
154 auto handler = upstream->get_client_handler(); in readcb()
156 rv = upstream->downstream_read(dconn); in readcb()
[all …]
Dshrpx_http2_session.cc284 auto upstream = downstream->get_upstream(); in disconnect() local
288 if (upstream->on_downstream_reset(downstream, hard) != 0) { in disconnect()
289 delete upstream->get_client_handler(); in disconnect()
802 auto upstream = downstream->get_upstream(); in call_downstream_readcb() local
803 if (!upstream) { in call_downstream_readcb()
806 if (upstream->downstream_read(downstream->get_downstream_connection()) != 0) { in call_downstream_readcb()
807 delete upstream->get_client_handler(); in call_downstream_readcb()
831 auto upstream = downstream->get_upstream(); in on_stream_close_callback() local
840 upstream->cancel_premature_downstream(downstream); in on_stream_close_callback()
1086 auto upstream = downstream->get_upstream(); in on_response_headers() local
[all …]
/third_party/mesa3d/bin/
Dcommit_in_branch.py48 def branch_has_commit(upstream: str, branch: str, commit: str) -> bool:
53 commit, upstream + '/' + branch],
59 def branch_has_backport_of_commit(upstream: str, branch: str, commit: str) -> str:
65 branch + '-branchpoint..' + upstream + '/' + branch,
92 (upstream, _) = branch.split('/')
95 if line.startswith(upstream + '\t'):
99 raise argparse.ArgumentTypeError('Invalid remote: ' + upstream)
128 (upstream, branch) = args.branch.split('/')
130 if branch_has_commit(upstream, branch, args.commit):
134 backport = branch_has_backport_of_commit(upstream, branch, args.commit)
Dcommit_in_branch_test.py99 upstream = get_upstream()
100 assert branch_has_commit(upstream, branch, commit) == expected
115 upstream = get_upstream()
116 assert branch_has_backport_of_commit(upstream, branch, commit) == expected
/third_party/boost/tools/build/src/engine/debian/
Dchangelog3 * New upstream release.
9 * New upstream release.
15 * New upstream release.
33 * New upstream release.
39 * New upstream release.
45 * New upstream release.
51 * New upstream release.
63 * New upstream release.
/third_party/boost/libs/container/src/
Dmonotonic_buffer_resource.cpp61 monotonic_buffer_resource::monotonic_buffer_resource(memory_resource* upstream) BOOST_NOEXCEPT in monotonic_buffer_resource() argument
62 : m_memory_blocks(upstream ? *upstream : *get_default_resource()) in monotonic_buffer_resource()
70 …urce::monotonic_buffer_resource(std::size_t initial_size, memory_resource* upstream) BOOST_NOEXCEPT in monotonic_buffer_resource() argument
71 : m_memory_blocks(upstream ? *upstream : *get_default_resource()) in monotonic_buffer_resource()
81 …ic_buffer_resource(void* buffer, std::size_t buffer_size, memory_resource* upstream) BOOST_NOEXCEPT in monotonic_buffer_resource() argument
82 : m_memory_blocks(upstream ? *upstream : *get_default_resource()) in monotonic_buffer_resource()
Dunsynchronized_pool_resource.cpp21 …e::unsynchronized_pool_resource(const pool_options& opts, memory_resource* upstream) BOOST_NOEXCEPT in unsynchronized_pool_resource() argument
22 : m_resource(opts, upstream) in unsynchronized_pool_resource()
29 unsynchronized_pool_resource::unsynchronized_pool_resource(memory_resource* upstream) BOOST_NOEXCEPT in unsynchronized_pool_resource() argument
30 : m_resource(upstream) in unsynchronized_pool_resource()
Dsynchronized_pool_resource.cpp46 …rce::synchronized_pool_resource(const pool_options& opts, memory_resource* upstream) BOOST_NOEXCEPT in synchronized_pool_resource() argument
47 : m_mut(), m_pool_resource(opts, upstream) in synchronized_pool_resource()
54 synchronized_pool_resource::synchronized_pool_resource(memory_resource* upstream) BOOST_NOEXCEPT in synchronized_pool_resource() argument
55 : m_mut(), m_pool_resource(upstream) in synchronized_pool_resource()
Dpool_resource.cpp59 void release(memory_resource &upstream) in release() argument
62 this->block_slist_base_t::release(upstream); in release()
163 pool_resource::pool_resource(const pool_options& opts, memory_resource* upstream) BOOST_NOEXCEPT in pool_resource() argument
164 : m_options(opts), m_upstream(*upstream), m_oversized_list(), m_pool_data(), m_pool_count() in pool_resource()
171 pool_resource::pool_resource(memory_resource* upstream) BOOST_NOEXCEPT in pool_resource() argument
172 : m_options(), m_upstream(*upstream), m_oversized_list(), m_pool_data(), m_pool_count() in pool_resource()
/third_party/node/deps/npm/node_modules/mime-db/
DHISTORY.md5 * Add new upstream MIME types
13 * Add new upstream MIME types
21 * Add new upstream MIME types
28 * Add new upstream MIME types
38 * Add new upstream font extensions
39 * Add new upstream MIME types
49 * Add new upstream MIME types
60 * Add new upstream MIME types
66 * Add new upstream MIME types
73 * Add new upstream MIME types
[all …]
/third_party/harfbuzz/.ci/
Ddeploy-docs.sh23 git remote add upstream "https://$GH_TOKEN@github.com/harfbuzz/harfbuzz.github.io.git"
25 git fetch upstream
26 git reset upstream/master
33 git push -q upstream HEAD:master
/third_party/flutter/skia/third_party/externals/harfbuzz/.ci/
Ddeploy-docs.sh28 git remote add upstream "https://$GH_TOKEN@github.com/harfbuzz/harfbuzz.github.io.git"
30 git fetch upstream
31 git reset upstream/master
36 git push -q upstream HEAD:master
Dtrigger-coverity.sh10 git remote add upstream "https://$GH_TOKEN@github.com/harfbuzz/harfbuzz.git"
11 git push -q upstream master:coverity_scan
/third_party/gstreamer/gstreamer/libs/gst/check/libcheck/
DREADME.txt8 directory in upstream. The files in the libcompat/ directory are the same as
9 those in the lib/ directory upstream.
12 provide snprintf and the upstream implementation is ~2000 lines.
20 Steps to sync with upstream:
30 Any changes made to files in this directory must be submitted upstream via
/third_party/flutter/flutter/packages/flutter/test/painting/
Dtext_painter_rtl_test.dart71 …painter.getOffsetForCaret(const TextPosition(offset: 0, affinity: TextAffinity.upstream), Rect.zer…
79 …painter.getOffsetForCaret(const TextPosition(offset: 1, affinity: TextAffinity.upstream), Rect.zer…
87 …painter.getOffsetForCaret(const TextPosition(offset: 7, affinity: TextAffinity.upstream), Rect.zer…
95 …painter.getOffsetForCaret(const TextPosition(offset: 8, affinity: TextAffinity.upstream), Rect.zer…
103 …painter.getOffsetForCaret(const TextPosition(offset: 9, affinity: TextAffinity.upstream), Rect.zer…
111 …painter.getOffsetForCaret(const TextPosition(offset: 10, affinity: TextAffinity.upstream), Rect.ze…
198 …painter.getOffsetForCaret(const TextPosition(offset: 0, affinity: TextAffinity.upstream), Rect.zer…
206 …painter.getOffsetForCaret(const TextPosition(offset: 1, affinity: TextAffinity.upstream), Rect.zer…
214 …painter.getOffsetForCaret(const TextPosition(offset: 7, affinity: TextAffinity.upstream), Rect.zer…
222 …painter.getOffsetForCaret(const TextPosition(offset: 8, affinity: TextAffinity.upstream), Rect.zer…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/
DCONTRIBUTING.md118 * It is assumed that upstream points to
123 For example, in this configuration, it is labeled `upstream`.
128 upstream https://github.com/KhronosGroup/SPIRV-Tools.git (fetch)
129 upstream https://github.com/KhronosGroup/SPIRV-Tools.git (push)
132 * Make sure that the `upstream` remote is set to fetch from the `refs/pull`
136 git config --get-all remote.upstream.fetch
137 +refs/heads/*:refs/remotes/upstream/*
138 +refs/pull/*/head:refs/remotes/upstream/pr/*
141 * If the line `+refs/pull/*/head:refs/remotes/upstream/pr/*` is not present in
145 git config --local --add remote.upstream.fetch '+refs/pull/*/head:refs/remotes/upstream/pr/*'
[all …]
/third_party/spirv-tools/
DCONTRIBUTING.md125 * It is assumed that upstream points to
130 For example, in this configuration, it is labeled `upstream`.
135 upstream https://github.com/KhronosGroup/SPIRV-Tools.git (fetch)
136 upstream https://github.com/KhronosGroup/SPIRV-Tools.git (push)
139 * Make sure that the `upstream` remote is set to fetch from the `refs/pull`
143 git config --get-all remote.upstream.fetch
144 +refs/heads/*:refs/remotes/upstream/*
145 +refs/pull/*/head:refs/remotes/upstream/pr/*
148 * If the line `+refs/pull/*/head:refs/remotes/upstream/pr/*` is not present in
152 git config --local --add remote.upstream.fetch '+refs/pull/*/head:refs/remotes/upstream/pr/*'
[all …]
/third_party/skia/third_party/externals/spirv-tools/
DCONTRIBUTING.md118 * It is assumed that upstream points to
123 For example, in this configuration, it is labeled `upstream`.
128 upstream https://github.com/KhronosGroup/SPIRV-Tools.git (fetch)
129 upstream https://github.com/KhronosGroup/SPIRV-Tools.git (push)
132 * Make sure that the `upstream` remote is set to fetch from the `refs/pull`
136 git config --get-all remote.upstream.fetch
137 +refs/heads/*:refs/remotes/upstream/*
138 +refs/pull/*/head:refs/remotes/upstream/pr/*
141 * If the line `+refs/pull/*/head:refs/remotes/upstream/pr/*` is not present in
145 git config --local --add remote.upstream.fetch '+refs/pull/*/head:refs/remotes/upstream/pr/*'
[all …]
/third_party/node/tools/inspector_protocol/
Droll.py107 upstream = os.path.normpath(os.path.expanduser(args.ip_src_upstream))
110 CheckRepoIsClean(upstream, '/src')
112 CheckRepoIsInspectorProtocolCheckout(upstream)
118 src_dir = upstream
150 head_revision = GetHeadRevision(upstream)
/third_party/boost/boost/container/pmr/
Dmonotonic_buffer_resource.hpp81 explicit monotonic_buffer_resource(memory_resource* upstream = 0) BOOST_NOEXCEPT;
89 …explicit monotonic_buffer_resource(std::size_t initial_size, memory_resource* upstream = 0) BOOST_…
98 …monotonic_buffer_resource(void* buffer, std::size_t buffer_size, memory_resource* upstream = 0) BO…
/third_party/skia/experimental/documentation/
Dgerrit.md132 assuming that the branch has an upstream topic branch.
135 local MESSAGE="$(git log --format=%B ^@{upstream} @)"
136 git reset --soft $(git merge-base @ @{upstream})
155 If your branch's upstream branch (set with `git branch --set-upstream-to=...`)
159 local UPSTREAM_FULL="$(git rev-parse --symbolic-full-name @{upstream})"
162 (*) echo "Set your remote upstream branch."; return 2;;
174 …ull-name @{u})";case "$F" in (refs/remotes/*);;(*)echo "Set your remote upstream branch.";return 2…
/third_party/flutter/skia/experimental/documentation/
Dgerrit.md132 assuming that the branch has an upstream topic branch.
135 local MESSAGE="$(git log --format=%B ^@{upstream} @)"
136 git reset --soft $(git merge-base @ @{upstream})
155 If your branch's upstream branch (set with `git branch --set-upstream-to=...`)
159 local UPSTREAM_FULL="$(git rev-parse --symbolic-full-name @{upstream})"
162 (*) echo "Set your remote upstream branch."; return 2;;
174 …ull-name @{u})";case "$F" in (refs/remotes/*);;(*)echo "Set your remote upstream branch.";return 2…

12345678910>>...15