Searched defs:query_params (Results 1 - 2 of 2) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
H A Dtools.py77 into query_params and then stops serving.
79 query_params = {} variable in class:ClientRedirectServer
86 into the servers query_params and then stops serving.
101 self.server.query_params = query
214 if 'error' in httpd.query_params:
216 if 'code' in httpd.query_params:
217 code = httpd.query_params['code']
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dbase_api.py74 query_params: (repeated) query parameters for this method.
94 query_params = messages.StringField(5, repeated=True) variable in class:ApiMethodInfo
151 def __init__(self, base_url, relative_path=None, query_params=None):
157 self.query_params = urllib.parse.parse_qs(components.query or '')
158 if query_params is not None:
159 self.query_params.update(query_params)
167 query_params = urllib.parse.parse_qs(urlparts.query)
172 base_url, relative_path=relative_path, query_params=query_params)
[all...]

Completed in 156 milliseconds