OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:run_id
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/tools/deep_memory_profiler/visualizer/
app.py
35
run_id
= self.request.get('
run_id
')
44
if
run_id
and tmpl_id:
45
template_values['json'] = services.GetProfiler(
run_id
)
58
run_id
= services.CreateProfiler(blob_info)
70
'
run_id
':
run_id
,
81
run_id
= self.request.POST['
run_id
']
86
'
run_id
': run_id
[
all
...]
services.py
16
"""Profiler entity to store json data. Use
run_id
as its key.
28
"""Create Profiler entity in database of uploaded file. Return
run_id
."""
32
# Check the uniqueness of data
run_id
and store new one.
33
run_id
= json_obj['
run_id
']
34
prof_key = ndb.Key('Profiler',
run_id
)
36
# Profile for this
run_id
does not exist
37
profiler = Profiler(id=
run_id
, blob_key=blob_info.key())
40
return
run_id
43
def GetProfiler(
run_id
)
[
all
...]
app_unittest.py
55
run_id
= services.CreateProfiler(correct_blob['blob_info'])
58
self.assertEqual(services.GetProfiler(
run_id
), correct_blob['json_str'])
/external/chromium_org/tools/deep_memory_profiler/lib/
dump.py
41
def
run_id
(self):
member in class:Dump
deep_dump.py
121
def
run_id
(self):
member in class:DeepDump
/external/chromium_org/tools/deep_memory_profiler/subcommands/
cat.py
44
json_root['
run_id
'] = None
68
if json_root['
run_id
'] and json_root['
run_id
'] != dump.
run_id
:
70
json_root['
run_id
'] = ''
72
json_root['
run_id
'] = dump.
run_id
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
profiler.js
73
* Get
run_id
of current profiler.
74
* @return {string}
run_id
of current profiler.
77
return this.jsonData_['
run_id
'];
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
webrunner.js
481
var run = result.
run_id
;
[
all
...]
Completed in 301 milliseconds