Home | History | Annotate | Download | only in interpreter

Lines Matching refs:server_name

25 SERVER_NAME = 'http://chromeoswideprofiling.appspot.com'
30 def Authenticate(server_name):
34 server_name: (string) URL that the app engine code is living on.
40 if server_name.endswith('/'):
41 server_name = server_name.rstrip('/')
70 def DownloadSamples(server_name, authtoken, output_dir, start, stop):
74 server_name: (string) URL that the app engine code is living on.
83 if server_name.endswith('/'):
84 server_name = server_name.rstrip('/')
86 serve_page_string = _GetServePage(server_name, authtoken)
107 _DownloadSampleFromServer(server_name, authtoken, key, time, board, version,
126 def _DownloadSampleFromServer(server_name, authtoken, key, time, board, version,
130 server_name: (string) URL that the app engine code is living on.
147 serv_uri = server_name + '/serve/' + key
149 full_serv_uri = server_name + '/_ah/login?%s' % urllib.urlencode(serv_args)
183 def _DeleteSampleFromServer(server_name, authtoken, key):
187 server_name: (string) URL that the app engine code is living on.
194 serv_uri = server_name + '/del/' + key
196 full_serv_uri = server_name + '/_ah/login?%s' % urllib.urlencode(serv_args)
201 def _GetServePage(server_name, authtoken):
204 server_name: (string) URL the app engine code is living on.
210 serv_uri = server_name + '/serve'
212 full_serv_uri = server_name + '/_ah/login?%s' % urllib.urlencode(serv_args)
242 authtoken = Authenticate(SERVER_NAME)
246 DownloadSamples(SERVER_NAME, authtoken, options.output_dir, options.start_ind,