Public Information for Job 86423

Created By: demo
Created At: Sat, 21 Dec 2019 15:37:11 -0600

Input Dataset: 2019 October/GitHub (small)

Last Submitted At: Sat, 21 Dec 2019 15:37:11 -0600
Last Finished At: Sat, 21 Dec 2019 15:38:37 -0600 (1m 26s)

Source Code

m: output collection[string][string][int] of string; # program analysis output type T = set of string; type T_gen_kill = { gen: T, kill: string }; type T_inout = { in: T, out: T }; m_name: string; # traversal that gets all variable uses in a method init := traversal(node: CFGNode) : T_gen_kill { cur_value: T_gen_kill; cur_value = { node.useVariables, node.defVariables }; return cur_value; }; # cfg live variable analysis live := traversal(node: CFGNode) : T_inout { cur_val: T_inout; if (def(getvalue(node))) { cur_val = getvalue(node); } else { in_set: T; out_set: T; cur_val = { in_set, out_set }; } succs := node.successors; foreach(i:int; def(succs[i])) { succ := getvalue(succs[i]); if (def(succ)) { cur_val.out = union(cur_val.out,succ.in); } } gen_kill := getvalue(node, init); if (def(gen_kill)) { remove(cur_val.out, gen_kill.kill); cur_val.in = union(gen_kill.gen, cur_val.out); } return cur_val; }; result := traversal(node: CFGNode) { if (def(getvalue(node, live))) { m[input.project_url][m_name][node.id] << string(getvalue(node, live).in); } }; # user-defined fix point function that is used for analysis termination. fixp1 := fixp(curr, prev: T_inout) : bool { if (len(difference(curr.in, prev.in)) == 0) return true; return false; }; visit(input, visitor { before node: CodeRepository -> { snapshot := getsnapshot(node, "SOURCE_JAVA_JLS"); foreach (i: int; def(snapshot[i])) visit(snapshot[i]); stop; } before node: Method -> { cfg := getcfg(node); m_name = current(Declaration).name + "::" + node.name; traverse(cfg, TraversalDirection.BACKWARD, TraversalKind.HYBRID, init); traverse(cfg, TraversalDirection.BACKWARD, TraversalKind.HYBRID, live, fixp1); traverse(cfg, TraversalDirection.BACKWARD, TraversalKind.HYBRID, result); clear(init); clear(live); } });

Output

Job Output Size: 203.33M

Note: Output is 203.33M, only showing first 64k
m[https://github.com/1mobilesuper/1mobile_download][::run][0] = [filename, context]
m[https://github.com/1mobilesuper/1mobile_download][::run][0] = []
m[https://github.com/1mobilesuper/1mobile_download][::run][1] = [filename, context]
m[https://github.com/1mobilesuper/1mobile_download][::run][1] = []
m[https://github.com/1mobilesuper/1mobile_download][::run][2] = [filename, context]
m[https://github.com/1mobilesuper/1mobile_download][::run][2] = []
m[https://github.com/1mobilesuper/1mobile_download][::run][3] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::<init>][0] = [AppsStatusProvider, context]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::<init>][1] = [AppsStatusProvider, context]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::<init>][2] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][0] = [AppsStatusProvider]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][1] = [AppsStatusProvider]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][2] = [AppsStatusProvider]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][3] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][4] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][5] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][0] = [AppsStatusProvider]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][1] = [AppsStatusProvider]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][2] = [AppsStatusProvider]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][3] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][4] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][5] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onCreate][0] = [db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onCreate][1] = [db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onCreate][2] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][0] = [db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][1] = [db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][2] = [db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][3] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][0] = [whereArgs, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][1] = [whereArgs, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][2] = [whereArgs, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][3] = [whereArgs, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][4] = [count, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][5] = [count]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][6] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][7] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][8] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getType][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getType][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getType][2] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][0] = [ctx, URI]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][1] = [ctx, URI]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][2] = [ctx]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][3] = [URI]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][4] = [URI]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][5] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][0] = [values, DB_TABLE, uri, Uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][1] = [values, DB_TABLE, uri, Uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][2] = [values, DB_TABLE, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][3] = [values, DB_TABLE, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][4] = [uri, rowID]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][5] = [uri, rowID]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][6] = [rowID]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][7] = [Uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][8] = [Uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][9] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][2] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][3] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][0] = [selection, selectionArgs, DB_TABLE, projection, sort, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][10] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][1] = [selection, selectionArgs, DB_TABLE, projection, sort, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][2] = [selection, selectionArgs, DB_TABLE, projection, sort, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][3] = [selection, selectionArgs, DB_TABLE, projection, sort, uri, db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][4] = [selection, selectionArgs, DB_TABLE, projection, sort, uri, db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][5] = [selection, selectionArgs, projection, sort, uri, db]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][6] = [ret, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][7] = [ret]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][8] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][9] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][0] = [whereArgs, values, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][1] = [whereArgs, values, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][2] = [whereArgs, values, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][3] = [whereArgs, values, DB_TABLE, where, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][4] = [count, uri]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][5] = [count]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][6] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][7] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][0] = [cursor, baseUri]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][1] = [cursor, baseUri]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][2] = [baseUri]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getBlob][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getBlob][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getBlob][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnCount][0] = [COLUMNS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnCount][1] = [COLUMNS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnCount][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][0] = [columnName]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][1] = [columnName]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][2] = [index]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][4] = [index]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][5] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndex][0] = [columnName]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndex][1] = [columnName]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndex][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][0] = [COLUMNS, columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][1] = [COLUMNS, columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][2] = [columnIndex, COLUMNS, numColumns]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][4] = [COLUMNS, columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][5] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][0] = [COLUMNS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][1] = [COLUMNS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][2] = [returnColumns, COLUMNS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][3] = [returnColumns]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][4] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getDouble][0] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getDouble][1] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getDouble][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][0] = [Impl, ERROR_TOO_MANY_REDIRECTS, ERROR_INSUFFICIENT_SPACE, ERROR_UNHANDLED_HTTP_CODE, ERROR_FILE_ALREADY_EXISTS, ERROR_FILE_ERROR, ERROR_HTTP_DATA_ERROR, ERROR_UNKNOWN, ERROR_CANNOT_RESUME, status, ERROR_DEVICE_NOT_FOUND]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][10] = [ERROR_HTTP_DATA_ERROR]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][11] = [ERROR_TOO_MANY_REDIRECTS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][12] = [ERROR_TOO_MANY_REDIRECTS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][13] = [ERROR_INSUFFICIENT_SPACE]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][14] = [ERROR_INSUFFICIENT_SPACE]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][15] = [ERROR_DEVICE_NOT_FOUND]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][16] = [ERROR_DEVICE_NOT_FOUND]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][17] = [ERROR_CANNOT_RESUME]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][18] = [ERROR_CANNOT_RESUME]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][19] = [ERROR_FILE_ALREADY_EXISTS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][1] = [Impl, ERROR_TOO_MANY_REDIRECTS, ERROR_INSUFFICIENT_SPACE, ERROR_UNHANDLED_HTTP_CODE, ERROR_FILE_ALREADY_EXISTS, ERROR_FILE_ERROR, ERROR_HTTP_DATA_ERROR, ERROR_UNKNOWN, ERROR_CANNOT_RESUME, status, ERROR_DEVICE_NOT_FOUND]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][20] = [ERROR_FILE_ALREADY_EXISTS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][21] = [ERROR_UNKNOWN]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][22] = [ERROR_UNKNOWN]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][23] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][2] = [status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][3] = [ERROR_TOO_MANY_REDIRECTS, ERROR_INSUFFICIENT_SPACE, ERROR_UNHANDLED_HTTP_CODE, ERROR_FILE_ALREADY_EXISTS, ERROR_FILE_ERROR, ERROR_HTTP_DATA_ERROR, ERROR_UNKNOWN, ERROR_CANNOT_RESUME, status, ERROR_DEVICE_NOT_FOUND]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][4] = [ERROR_FILE_ERROR]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][5] = [ERROR_FILE_ERROR]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][6] = [ERROR_UNHANDLED_HTTP_CODE]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][7] = [ERROR_UNHANDLED_HTTP_CODE]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][8] = [ERROR_UNHANDLED_HTTP_CODE]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][9] = [ERROR_HTTP_DATA_ERROR]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getFloat][0] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getFloat][1] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getFloat][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getInt][0] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getInt][1] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getInt][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][0] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][10] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][11] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][1] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][2] = [Impl, destinationType]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][3] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][4] = [Impl, destinationType]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][5] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][6] = [localPath]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][7] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][9] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLong][0] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLong][1] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLong][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][0] = [PAUSED_QUEUED_FOR_WIFI, PAUSED_WAITING_FOR_NETWORK, PAUSED_UNKNOWN, PAUSED_WAITING_TO_RETRY, status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][10] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][1] = [PAUSED_QUEUED_FOR_WIFI, PAUSED_WAITING_FOR_NETWORK, PAUSED_UNKNOWN, PAUSED_WAITING_TO_RETRY, status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][2] = [PAUSED_WAITING_TO_RETRY]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][3] = [PAUSED_WAITING_TO_RETRY]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][4] = [PAUSED_WAITING_FOR_NETWORK]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][5] = [PAUSED_WAITING_FOR_NETWORK]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][6] = [PAUSED_QUEUED_FOR_WIFI]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][7] = [PAUSED_QUEUED_FOR_WIFI]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][8] = [PAUSED_UNKNOWN]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][9] = [PAUSED_UNKNOWN]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][0] = [status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][1] = [status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][2] = [status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][3] = [status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][4] = [status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][5] = [status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][6] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][7] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getShort][0] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getShort][1] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getShort][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getString][0] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getString][1] = [columnIndex]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getString][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingLong][0] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingLong][1] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingLong][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingString][0] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingString][1] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingString][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::isLongColumn][0] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::isLongColumn][1] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::isLongColumn][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][0] = [COLUMN_REASON, Impl, COLUMN_BYTES_DOWNLOADED_SO_FAR, column, COLUMN_ID, Downloads, COLUMN_TOTAL_SIZE_BYTES, COLUMN_STATUS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][10] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][11] = [COLUMN_BYTES_DOWNLOADED_SO_FAR, Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][12] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][13] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][14] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][15] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][1] = [COLUMN_REASON, Impl, COLUMN_BYTES_DOWNLOADED_SO_FAR, column, COLUMN_ID, Downloads, COLUMN_TOTAL_SIZE_BYTES, COLUMN_STATUS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][2] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][3] = [COLUMN_REASON, Impl, COLUMN_BYTES_DOWNLOADED_SO_FAR, COLUMN_ID, Downloads, COLUMN_TOTAL_SIZE_BYTES, COLUMN_STATUS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][4] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][5] = [COLUMN_REASON, COLUMN_BYTES_DOWNLOADED_SO_FAR, Downloads, COLUMN_TOTAL_SIZE_BYTES, COLUMN_STATUS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][6] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][7] = [COLUMN_REASON, COLUMN_BYTES_DOWNLOADED_SO_FAR, Downloads, COLUMN_STATUS]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][8] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][9] = [COLUMN_REASON, COLUMN_BYTES_DOWNLOADED_SO_FAR, Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][0] = [STATUS_PENDING, STATUS_PAUSED, STATUS_SUCCESSFUL, STATUS_FAILED, STATUS_RUNNING, status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][10] = [STATUS_PAUSED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][11] = [STATUS_SUCCESSFUL]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][12] = [STATUS_SUCCESSFUL]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][13] = [STATUS_FAILED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][14] = [STATUS_FAILED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][15] = [STATUS_FAILED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][16] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][1] = [STATUS_PENDING, STATUS_PAUSED, STATUS_SUCCESSFUL, STATUS_FAILED, STATUS_RUNNING, status]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][2] = [STATUS_PENDING]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][3] = [STATUS_PENDING]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][4] = [STATUS_RUNNING]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][5] = [STATUS_RUNNING]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][6] = [STATUS_PAUSED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][7] = [STATUS_PAUSED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][8] = [STATUS_PAUSED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][9] = [STATUS_PAUSED]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][0] = [COLUMN_MEDIAPROVIDER_URI, Impl, column, COLUMN_TITLE, COLUMN_MEDIA_TYPE, Downloads, COLUMN_DESCRIPTION, COLUMN_URI]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][10] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][11] = [COLUMN_MEDIAPROVIDER_URI, Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][12] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][13] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][14] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][15] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][1] = [COLUMN_MEDIAPROVIDER_URI, Impl, column, COLUMN_TITLE, COLUMN_MEDIA_TYPE, Downloads, COLUMN_DESCRIPTION, COLUMN_URI]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][2] = [column]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][3] = [COLUMN_MEDIAPROVIDER_URI, Impl, COLUMN_TITLE, COLUMN_MEDIA_TYPE, Downloads, COLUMN_DESCRIPTION, COLUMN_URI]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][4] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][5] = [COLUMN_MEDIAPROVIDER_URI, Impl, COLUMN_MEDIA_TYPE, COLUMN_DESCRIPTION, Downloads, COLUMN_URI]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][6] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][7] = [COLUMN_MEDIAPROVIDER_URI, Impl, COLUMN_MEDIA_TYPE, Downloads, COLUMN_URI]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][8] = [Downloads]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][9] = [COLUMN_MEDIAPROVIDER_URI, Impl, COLUMN_MEDIA_TYPE, Downloads]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::<init>][0] = [DB_VERSION, context, DB_NAME]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::<init>][1] = [DB_VERSION, context, DB_NAME]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::<init>][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][0] = [Impl, DB_TABLE, Constants]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][1] = [Impl, DB_TABLE, Constants]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][2] = [Impl, DB_TABLE, Constants]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][3] = [Impl, DB_TABLE, Constants]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][4] = [Constants]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][5] = [Constants]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][0] = [RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][1] = [RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][2] = [RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][3] = [RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][0] = [DB_TABLE, RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][1] = [DB_TABLE, RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][2] = [DB_TABLE, RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][3] = [DB_TABLE, RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][4] = [RequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][0] = [Constants, db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][1] = [Constants, db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][2] = [Constants, db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][3] = [db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][4] = [db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][0] = [db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][1] = [db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][2] = [db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][3] = [db]
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][0] = [systemFacade, context]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][1] = [systemFacade, context]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][2] = [systemFacade]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][0] = [NETWORK_NO_CONNECTION, NETWORK_CANNOT_USE_ROAMING]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][1] = [NETWORK_NO_CONNECTION, NETWORK_CANNOT_USE_ROAMING]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][2] = [NETWORK_NO_CONNECTION, NETWORK_CANNOT_USE_ROAMING, networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][3] = [NETWORK_NO_CONNECTION]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][4] = [NETWORK_CANNOT_USE_ROAMING, networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][5] = [NETWORK_CANNOT_USE_ROAMING]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][6] = [networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][0] = [mAllowedNetworkTypes, mIsPublicApi, networkType, NETWORK_TYPE_DISALLOWED_BY_REQUESTOR]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][1] = [mAllowedNetworkTypes, mIsPublicApi, networkType, NETWORK_TYPE_DISALLOWED_BY_REQUESTOR]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][2] = [mAllowedNetworkTypes, networkType, NETWORK_TYPE_DISALLOWED_BY_REQUESTOR]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][3] = [mAllowedNetworkTypes, flag, networkType, NETWORK_TYPE_DISALLOWED_BY_REQUESTOR]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][4] = [NETWORK_TYPE_DISALLOWED_BY_REQUESTOR]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][5] = [networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][0] = [mBypassRecommendedSizeLimit, NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, mTotalBytes, NETWORK_OK, ConnectivityManager, NETWORK_UNUSABLE_DUE_TO_SIZE, networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][10] = [NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, mTotalBytes, NETWORK_OK, recommendedMaxBytesOverMobile]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][11] = [NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][12] = [NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][13] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][1] = [mBypassRecommendedSizeLimit, NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, mTotalBytes, NETWORK_OK, ConnectivityManager, NETWORK_UNUSABLE_DUE_TO_SIZE, networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][2] = [NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][3] = [mBypassRecommendedSizeLimit, NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, NETWORK_OK, mTotalBytes, ConnectivityManager, NETWORK_UNUSABLE_DUE_TO_SIZE, networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][4] = [NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][5] = [mBypassRecommendedSizeLimit, NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, mTotalBytes, NETWORK_OK, NETWORK_UNUSABLE_DUE_TO_SIZE]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][6] = [mBypassRecommendedSizeLimit, NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, mTotalBytes, NETWORK_OK, NETWORK_UNUSABLE_DUE_TO_SIZE, maxBytesOverMobile]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][7] = [NETWORK_UNUSABLE_DUE_TO_SIZE]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][8] = [mBypassRecommendedSizeLimit, NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, mTotalBytes, NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][9] = [NETWORK_RECOMMENDED_UNUSABLE_DUE_TO_SIZE, mTotalBytes, NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getAllDownloadsUri][0] = [mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getAllDownloadsUri][1] = [mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getAllDownloadsUri][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getHeaders][0] = [mRequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getHeaders][1] = [mRequestHeaders]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getHeaders][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][0] = [networkError]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][10] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][11] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][12] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][13] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][14] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][1] = [networkError]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][8] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][9] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyAppUri][0] = [mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyAppUri][1] = [mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyAppUri][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyDownloadsUri][0] = [mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyDownloadsUri][1] = [mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyDownloadsUri][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][0] = [Impl, mStatus, mVisibility]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][1] = [Impl, mStatus, mVisibility]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][3] = [Impl, mVisibility]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][0] = [apkpath, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][10] = [activityIntent, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][11] = [activityIntent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][12] = [activityIntent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][13] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][14] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][15] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][1] = [apkpath, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][3] = [apkpath, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][4] = [path, apkpath, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][6] = [path, apkpath, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][7] = [apkpath, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][8] = [path, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][9] = [path, activityIntent, Intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isOnCache][0] = [mDestination, Impl]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isOnCache][1] = [mDestination, Impl]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isOnCache][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][0] = [mControl, Impl, NETWORK_OK, mStatus, now, network_con_changed, mHasActiveThread]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][10] = [NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][11] = [NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][12] = [NETWORK_OK]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][13] = [Impl, now, network_con_changed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][14] = [Impl, now, network_con_changed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][15] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][16] = [Impl]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][17] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][18] = [now]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][19] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][1] = [mControl, Impl, NETWORK_OK, mStatus, now, network_con_changed, mHasActiveThread]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][20] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][3] = [mControl, Impl, NETWORK_OK, mStatus, now, network_con_changed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][5] = [Impl, NETWORK_OK, mStatus, now, network_con_changed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][8] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][9] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][0] = [mIsPublicApi, mDestination, Impl, mAllowRoaming]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][1] = [mIsPublicApi, mDestination, Impl, mAllowRoaming]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][2] = [mAllowRoaming]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][3] = [mDestination, Impl]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][0] = [AUTO_INSTALL, AppsStatusProvider, mFileName, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][1] = [AUTO_INSTALL, AppsStatusProvider, mFileName, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][2] = [AUTO_INSTALL, AppsStatusProvider, mFileName, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][3] = [AppsStatusProvider, mFileName, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][4] = [mFileName, AppsStatusProvider, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][5] = [AppsStatusProvider, mFileName, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][6] = [mFileName]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][8] = [mFileName]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][9] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][0] = [mTotalBytes, mReferer, mStatus, mUserAgent, mUri, mRetryAfter, mLastMod, mFileName, mMimeType, mMediaScanned, mControl, mETag, mNoIntegrity, mPackage, Constants, mId, mClass, mMediaProviderUri, mDeleted, mDestination, mCurrentBytes, mHint, mVisibility, mCookies, mNumFailed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][10] = [mControl, mETag, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mRetryAfter, mCurrentBytes, mLastMod, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][11] = [mETag, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mRetryAfter, mCurrentBytes, mLastMod, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][12] = [mETag, mPackage, mTotalBytes, mReferer, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mRetryAfter, mCurrentBytes, mLastMod, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][13] = [mETag, mPackage, mTotalBytes, mReferer, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mRetryAfter, mCurrentBytes, mLastMod, mCookies, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][14] = [mETag, mPackage, mTotalBytes, mReferer, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mCurrentBytes, mLastMod, mCookies, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][15] = [mETag, mPackage, mTotalBytes, mReferer, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mCurrentBytes, mCookies, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][16] = [mETag, mCurrentBytes, mTotalBytes, mReferer, Constants, mClass, mUserAgent, mMediaProviderUri, mCookies, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][17] = [mETag, mCurrentBytes, mTotalBytes, mReferer, Constants, mUserAgent, mMediaProviderUri, mCookies, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][18] = [mETag, mCurrentBytes, mTotalBytes, mReferer, Constants, mUserAgent, mMediaProviderUri, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][19] = [mETag, mCurrentBytes, mTotalBytes, mReferer, Constants, mMediaProviderUri, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][1] = [mTotalBytes, mReferer, mStatus, mUserAgent, mUri, mRetryAfter, mLastMod, mFileName, mMimeType, mMediaScanned, mControl, mETag, mNoIntegrity, mPackage, Constants, mId, mClass, mMediaProviderUri, mDeleted, mDestination, mCurrentBytes, mHint, mVisibility, mCookies, mNumFailed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][20] = [mETag, mCurrentBytes, mTotalBytes, Constants, mMediaProviderUri, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][21] = [mETag, mCurrentBytes, Constants, mMediaProviderUri, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][22] = [mETag, Constants, mMediaProviderUri, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][23] = [Constants, mMediaProviderUri, mDeleted, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][24] = [Constants, mMediaProviderUri, mDeleted]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][25] = [Constants, mMediaProviderUri]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][26] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][2] = [mTotalBytes, mReferer, mStatus, mUserAgent, mUri, mRetryAfter, mLastMod, mFileName, mMimeType, mMediaScanned, mControl, mETag, mNoIntegrity, mPackage, Constants, mId, mClass, mMediaProviderUri, mDeleted, mDestination, mCurrentBytes, mHint, mVisibility, mCookies, mNumFailed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][3] = [mTotalBytes, mReferer, mStatus, mUserAgent, mUri, mRetryAfter, mLastMod, mFileName, mMimeType, mMediaScanned, mControl, mETag, mNoIntegrity, mPackage, Constants, mClass, mMediaProviderUri, mDeleted, mDestination, mCurrentBytes, mHint, mVisibility, mCookies, mNumFailed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][4] = [mControl, mETag, mNoIntegrity, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mDestination, mRetryAfter, mCurrentBytes, mLastMod, mHint, mFileName, mVisibility, mMimeType, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][5] = [mControl, mETag, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mDestination, mRetryAfter, mCurrentBytes, mLastMod, mHint, mFileName, mVisibility, mMimeType, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][6] = [mControl, mETag, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mDestination, mRetryAfter, mCurrentBytes, mLastMod, mFileName, mVisibility, mMimeType, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][7] = [mControl, mETag, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mDestination, mRetryAfter, mCurrentBytes, mLastMod, mVisibility, mMimeType, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][8] = [mControl, mETag, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mDestination, mRetryAfter, mCurrentBytes, mLastMod, mVisibility, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][9] = [mControl, mETag, mPackage, mTotalBytes, mReferer, mStatus, Constants, mClass, mUserAgent, mMediaProviderUri, mDeleted, mRetryAfter, mCurrentBytes, mLastMod, mVisibility, mCookies, mNumFailed, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][0] = [Impl, mStatus, now]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][1] = [Impl, mStatus, now]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][3] = [Impl, mStatus, now]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][5] = [now]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][6] = [now, when]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][8] = [now, when]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][9] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][0] = [EXTRA_IS_WIFI_REQUIRED, Intent, isWifiRequired]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][1] = [EXTRA_IS_WIFI_REQUIRED, Intent, isWifiRequired]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][2] = [EXTRA_IS_WIFI_REQUIRED, Intent, intent, isWifiRequired]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][3] = [EXTRA_IS_WIFI_REQUIRED, Intent, intent, isWifiRequired]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][4] = [EXTRA_IS_WIFI_REQUIRED, Intent, intent, isWifiRequired]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][5] = [EXTRA_IS_WIFI_REQUIRED, intent, isWifiRequired]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][6] = [intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][0] = [mRetryAfter, mLastMod, now, Constants, mNumFailed, mFuzz]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][1] = [mRetryAfter, mLastMod, now, Constants, mNumFailed, mFuzz]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][2] = [now]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][3] = [mRetryAfter, mLastMod, Constants, mFuzz, mNumFailed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][4] = [mRetryAfter, mLastMod]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][5] = [mLastMod, Constants, mFuzz, mNumFailed]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][0] = [Impl, mIsPublicApi, mPackage, mExtras, mId, mClass, DownloadManager, status]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][10] = [mId, DownloadManager, intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][11] = [Impl, mPackage, mExtras, mClass]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][12] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][13] = [Impl, mPackage, mExtras, mClass]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][14] = [Impl, mPackage, mExtras, mClass, intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][15] = [Impl, mExtras, intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][16] = [Impl, mExtras, intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][17] = [intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][18] = [intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][19] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][1] = [Impl, mIsPublicApi, mPackage, mExtras, mId, mClass, DownloadManager, status]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][2] = [mIsPublicApi, Impl, mPackage, mExtras, mId, mClass, DownloadManager]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][3] = [mIsPublicApi, Impl, mPackage, mExtras, mId, mClass, pkg, DownloadManager]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][4] = [mIsPublicApi, Impl, mPackage, mExtras, mId, mClass, DownloadManager]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][6] = [mIsPublicApi, Impl, mPackage, mExtras, mId, mClass, DownloadManager]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][7] = [mIsPublicApi, Impl, mPackage, mExtras, mId, mClass, DownloadManager]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][8] = [mPackage, mId, DownloadManager]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][9] = [mPackage, mId, DownloadManager, intent]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][0] = [AppsStatusProvider, mFileName, mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][10] = [AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][11] = [AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][12] = [AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][13] = [AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][14] = [AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][15] = [AppsStatusProvider, mFileName, mId, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][16] = [AppsStatusProvider, mFileName, values, mId, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][17] = [AppsStatusProvider, values, mId, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][18] = [values, AppsStatusProvider, mId, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][19] = [pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][1] = [AppsStatusProvider, mFileName, mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][20] = [pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][21] = [pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][22] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][2] = [AppsStatusProvider, mFileName, mId, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][3] = [AppsStatusProvider, mFileName, mId, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][4] = [cursor, AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][5] = [pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][6] = [AppsStatusProvider, mFileName, mId, mContext, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][7] = [AppsStatusProvider, mFileName, mId, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][8] = [AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][9] = [AppsStatusProvider, mFileName, mId, pkg, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::shouldScanFile][0] = [mDestination, Impl, mStatus, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::shouldScanFile][1] = [mDestination, Impl, mStatus, mMediaScanned]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::shouldScanFile][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::showAlertMsg][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::showAlertMsg][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::showAlertMsg][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::showAlertMsg][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][0] = [Impl, mStatus, now, mSystemFacade, Constants, mId, mHasActiveThread, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][10] = [Impl, mStatus, values, mSystemFacade, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][11] = [values, mSystemFacade, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][12] = [mSystemFacade, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][13] = [downloader]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][14] = [downloader]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][15] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][1] = [Impl, mStatus, now, mSystemFacade, Constants, mId, mHasActiveThread, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][3] = [Impl, mStatus, mSystemFacade, Constants, mId, mHasActiveThread, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][4] = [Impl, mStatus, mSystemFacade, Constants, mId, mHasActiveThread, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][5] = [Impl, mStatus, mSystemFacade, mHasActiveThread, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][7] = [Impl, mStatus, mSystemFacade, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][8] = [Impl, mSystemFacade, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][9] = [Impl, mStatus, mSystemFacade, mContext]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][0] = [Request, networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][1] = [Request, networkType]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][2] = [Request]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][3] = [Request]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][4] = [Request]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][5] = [Request]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][8] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][0] = [currentStatus, AppsStatusProvider, context, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][1] = [currentStatus, AppsStatusProvider, context, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][2] = [currentStatus, AppsStatusProvider, context, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][3] = [currentStatus, AppsStatusProvider, context, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][4] = [currentStatus, AppsStatusProvider, values, context, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][5] = [values, AppsStatusProvider, context, pkg]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][6] = [values, AppsStatusProvider, context, pkg]
m[https://github.com/1mobilesuper/1mo
... remaining output not shown, please download output.

Compilation

Status: Finished
Started: Sat, 21 Dec 2019 15:37:12 -0600
Finished: Sat, 21 Dec 2019 15:37:22 -0600 (10s)

Execution

Status: Finished
Started: Sat, 21 Dec 2019 15:37:26 -0600
Finished: Sat, 21 Dec 2019 15:38:37 -0600 (1m 11s)