Public Information for Job 86424

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

Input Dataset: 2019 October/GitHub (small)

Last Submitted At: Sat, 21 Dec 2019 15:38:21 -0600
Last Finished At: Sat, 21 Dec 2019 15:39:59 -0600 (1m 38s)

Source Code

m: output collection[string][string][int] of string; # program analysis output type T = set of string; type T_gen_kill = { gen: string, kill: string }; type T_inout = { in: T, out: T }; m_name: string; # traversal that accumulates generated values cfg_def := traversal(node: CFGNode) : T_gen_kill { cur_val: T_gen_kill = { "", "" }; if (node.defVariables != "") { cur_val.gen = node.defVariables + "@" + string(node.id); cur_val.kill = node.defVariables; } return cur_val; }; # cfg reaching definition analysis cfg_reach_def := traversal(n: CFGNode): T_inout { cur_val: T_inout; if (def(getvalue(n))) { cur_val = getvalue(n); } else { in_set: T; out_set: T; cur_val = { in_set, out_set }; } preds := n.predecessors; foreach (i: int; def(preds[i])) { pred := getvalue(preds[i]); if (def(pred)) cur_val.in = union(cur_val.in, pred.out); } cur_val.out = clone(cur_val.in); genkill := getvalue(n, cfg_def); if (genkill.kill != "") { tmp_out := values(cur_val.out); foreach (i: int; def(tmp_out[i])) { tmp1 := clone(tmp_out[i]); str_array := splitall(tmp1, "@"); if (str_array[0] == genkill.kill) remove(cur_val.out, tmp1); } add(cur_val.out, genkill.gen); } return cur_val; }; result := traversal(node: CFGNode) { if (def(getvalue(node, cfg_reach_def))) m[input.project_url][m_name][node.id] << string(getvalue(node, cfg_reach_def).out); }; # user-defined fix point function that is used for analysis termination. fixp1 := fixp(curr, prev: T_inout) : bool { if (len(difference(curr.out, prev.out)) == 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.FORWARD, TraversalKind.HYBRID, cfg_def); traverse(cfg, TraversalDirection.FORWARD, TraversalKind.HYBRID, cfg_reach_def, fixp1); traverse(cfg, TraversalDirection.FORWARD, TraversalKind.HYBRID, result); clear(cfg_def); clear(cfg_reach_def); } });

Output

Job Output Size: 255.22M

Note: Output is 255.22M, only showing first 64k
m[https://github.com/1mobilesuper/1mobile_download][::run][0] = []
m[https://github.com/1mobilesuper/1mobile_download][::run][0] = []
m[https://github.com/1mobilesuper/1mobile_download][::run][1] = []
m[https://github.com/1mobilesuper/1mobile_download][::run][1] = []
m[https://github.com/1mobilesuper/1mobile_download][::run][2] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::<init>][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::<init>][2] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::createTable][2] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::dropTable][2] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onCreate][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onCreate][2] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][2] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusDBHelper::onUpgrade][3] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][2] = [db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][3] = [count@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][4] = [count@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::delete][5] = [count@3, db@2]
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] = [count@3, db@2]
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] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][2] = [URI@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][3] = [ctx@3, URI@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][4] = [ctx@3, URI@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::getURI][5] = [ctx@3, URI@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][2] = [db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][3] = [rowID@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][4] = [rowID@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][5] = [rowID@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][6] = [rowID@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][7] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][8] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::insert][9] = [rowID@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][1] = [mOpenHelper@1]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][2] = [mOpenHelper@1]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::onCreate][3] = [mOpenHelper@1]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][0] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][10] = [qb@3, ret@5, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][2] = [db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][3] = [qb@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][4] = [qb@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][5] = [qb@3, ret@5, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][6] = [qb@3, ret@5, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::query][7] = [qb@3, ret@5, db@2]
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] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][1] = []
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][2] = [db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][3] = [count@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][4] = [count@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][AppsStatusProvider::update][5] = [count@3, db@2]
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] = [count@3, db@2]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][2] = [mBaseUri@2]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::<init>][3] = [mBaseUri@2]
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] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnCount][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnCount][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][1] = [index@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][2] = [index@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][3] = [index@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][4] = [index@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndexOrThrow][5] = [index@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndex][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndex][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnIndex][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][1] = [numColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][2] = [numColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][3] = [numColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][4] = [numColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnName][5] = [numColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][1] = [returnColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][2] = [returnColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][3] = [returnColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getColumnNames][4] = [returnColumns@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getDouble][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getDouble][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getDouble][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][10] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][11] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][12] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][13] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][14] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][15] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][16] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][17] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][18] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][19] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][20] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][21] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][22] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][23] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][4] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][5] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][6] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][7] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getErrorCode][9] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getFloat][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getFloat][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getFloat][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getInt][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getInt][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getInt][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][10] = [destinationType@1, downloadId@9]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][11] = [destinationType@1, downloadId@9, localPath@5]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][1] = [destinationType@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][2] = [destinationType@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][3] = [destinationType@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][4] = [destinationType@1]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][5] = [destinationType@1, localPath@5]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][6] = [destinationType@1, localPath@5]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][7] = [destinationType@1, localPath@5]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][8] = [destinationType@1, localPath@5]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLocalUri][9] = [destinationType@1, downloadId@9]
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLong][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLong][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getLong][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][10] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][4] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][5] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][6] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][7] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getPausedReason][9] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][4] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getReason][5] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getShort][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getShort][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getString][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getString][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getString][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingLong][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingLong][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingLong][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingString][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingString][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::getUnderlyingString][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::isLongColumn][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::isLongColumn][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::isLongColumn][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][10] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][11] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][12] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][13] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][14] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][15] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][4] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][5] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][6] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][7] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateLong][9] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][10] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][11] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][12] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][13] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][14] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][15] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][16] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][1] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][4] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][5] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][6] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][7] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateStatus][9] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][0] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][10] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][11] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][12] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][2] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][3] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][4] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][5] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][6] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][7] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][8] = []
m[https://github.com/1mobilesuper/1mobile_download][CursorTranslator::translateString][9] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::<init>][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::<init>][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::<init>][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createDownloadsTable][5] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::createHeadersTable][3] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::dropOldTables][4] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onCreate][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DatabaseHelper::onUpgrade][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][1] = [mContext@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][2] = [mContext@1, mSystemFacade@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][3] = [mContext@1, mSystemFacade@2, mFuzz@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::<init>][4] = [mContext@1, mSystemFacade@2, mFuzz@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][1] = [networkType@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][2] = [networkType@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][3] = [networkType@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][4] = [networkType@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][5] = [networkType@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][6] = [networkType@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkCanUseNetwork][7] = [networkType@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][2] = [flag@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][3] = [flag@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][4] = [flag@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][5] = [flag@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkIsNetworkTypeAllowed][6] = [flag@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][10] = [recommendedMaxBytesOverMobile@9, maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][11] = [recommendedMaxBytesOverMobile@9, maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][12] = [recommendedMaxBytesOverMobile@9, maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][13] = [recommendedMaxBytesOverMobile@9, maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][5] = [maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][6] = [maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][7] = [maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][8] = [maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::checkSizeAllowedForNetwork][9] = [recommendedMaxBytesOverMobile@9, maxBytesOverMobile@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getAllDownloadsUri][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getAllDownloadsUri][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getAllDownloadsUri][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getHeaders][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getHeaders][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getHeaders][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getLogMessageForNetworkError][0] = []
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] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyAppUri][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyAppUri][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyDownloadsUri][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyDownloadsUri][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::getMyDownloadsUri][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::hasCompletionNotification][3] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][10] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][11] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][12] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][13] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][14] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][15] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][3] = [path@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][4] = [path@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][5] = [path@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][6] = [path@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][7] = [path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][8] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::installByAndroidInstaller][9] = [activityIntent@8, path@3, path@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isOnCache][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isOnCache][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isOnCache][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][10] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][11] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][12] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][13] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][14] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][15] = [network_con_changed@15]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][16] = [network_con_changed@15, mStatus@16]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][17] = [network_con_changed@15, mStatus@16]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][18] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][19] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][20] = [network_con_changed@15, mStatus@16]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isReadyToStart][5] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::isRoamingAllowed][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][1] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][2] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][3] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][4] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][5] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][6] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][7] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][8] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::launchInstallDialog][9] = [sharedPref@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][10] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][11] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][12] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][13] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][14] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][15] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][16] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][17] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][18] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][19] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][20] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][21] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][22] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][23] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][24] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][25] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][26] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][8] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::logVerboseInfo][9] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][5] = [when@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][6] = [when@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][7] = [when@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][8] = [when@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::nextAction][9] = [when@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][1] = [intent@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][2] = [intent@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][3] = [intent@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][4] = [intent@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][5] = [intent@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][6] = [intent@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::notifyPauseDueToSize][7] = [intent@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::restartTime][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][10] = [pkg@2, intent@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][11] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][12] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][13] = [pkg@2, intent@13]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][14] = [pkg@2, intent@13]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][15] = [pkg@2, intent@13]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][16] = [pkg@2, intent@13]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][17] = [pkg@2, intent@13]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][18] = [pkg@2, intent@13, intent@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][19] = [pkg@2, intent@13, intent@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][2] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][3] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][4] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][5] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][6] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][7] = [pkg@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][8] = [pkg@2, intent@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::sendIntentIfRequested][9] = [pkg@2, intent@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][10] = [cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][11] = [pkg@1, cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][12] = [pkg@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][13] = [pkg@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][14] = [pkg@1, cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][15] = [pkg@1, cursor@3, values@15, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][16] = [pkg@1, cursor@3, values@15, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][17] = [pkg@1, cursor@3, values@15, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][18] = [pkg@1, cursor@3, values@15, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][19] = [pkg@1, cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][1] = [pkg@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][20] = [pkg@1, cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][21] = [pkg@1, cursor@3, values@15, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][22] = [pkg@1, cursor@3, values@15, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][2] = [pkg@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][3] = [pkg@1, cursor@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][4] = [pkg@1, cursor@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][5] = [pkg@1, cursor@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][6] = [pkg@1, cursor@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][7] = [cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][8] = [cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::setStatusToDownloadedOrUpdated][9] = [cursor@3, pkg@7]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::shouldScanFile][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::shouldScanFile][1] = []
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] = [handler@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::showAlertMsg][2] = [handler@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::showAlertMsg][3] = [handler@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][10] = [mStatus@8, values@9]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][11] = [mStatus@8, values@9]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][12] = [mStatus@8, downloader@12, values@9]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][13] = [mStatus@8, mHasActiveThread@13, downloader@12, values@9]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][14] = [mStatus@8, mHasActiveThread@13, downloader@12, values@9]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][15] = [mStatus@8, mHasActiveThread@13, downloader@12, values@9]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][5] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][6] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][8] = [mStatus@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::startIfReady][9] = [mStatus@8, values@9]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::translateNetworkTypeToApiFlag][5] = []
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] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][3] = [values@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][4] = [values@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][5] = [values@3, contentResolver@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][6] = [values@3, contentResolver@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][7] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][8] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadInfo::updateAppStatus][9] = [values@3, contentResolver@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::<init>][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::<init>][1] = [mResolver@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::<init>][2] = [mPackageName@2, mResolver@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::<init>][3] = [mPackageName@2, mBaseUri@3, mResolver@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::<init>][4] = [mPackageName@2, mBaseUri@3, mResolver@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::enqueue][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::enqueue][1] = [values@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::enqueue][2] = [values@1, downloadUri@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::enqueue][3] = [values@1, downloadUri@2, id@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::enqueue][4] = [values@1, downloadUri@2, id@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::enqueue][5] = [values@1, downloadUri@2, id@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getDownloadUri][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getDownloadUri][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getDownloadUri][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getInstance][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getInstance][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getInstance][2] = [downloadManager@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getInstance][3] = [downloadManager@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getInstance][4] = [downloadManager@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][1] = [whereArgs@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][2] = [whereArgs@1, i@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][3] = [whereArgs@1, i@2, i@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][4] = [whereArgs@1, i@2, i@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][5] = [whereArgs@1, i@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][6] = [whereArgs@1, i@2, i@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereArgsForIds][7] = [whereArgs@1, i@2, i@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][10] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][11] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][12] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][1] = [whereClause@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][2] = [whereClause@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][3] = [whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][4] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][5] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][6] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][7] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][8] = [i@9, whereClause@1, i@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::getWhereClauseForIds][9] = [i@9, whereClause@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::markRowDeleted][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::markRowDeleted][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::markRowDeleted][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::markRowDeleted][3] = [values@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::markRowDeleted][4] = [values@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::markRowDeleted][5] = [values@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::markRowDeleted][6] = [values@3]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::openDownloadedFile][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::openDownloadedFile][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::openDownloadedFile][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::query][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::query][1] = [underlyingCursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::query][2] = [underlyingCursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::query][3] = [underlyingCursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::query][4] = [underlyingCursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::query][5] = [underlyingCursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::remove][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::remove][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::remove][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::remove][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::remove][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][10] = [cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][11] = [values@11, cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][12] = [values@11, cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][13] = [values@11, cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][14] = [values@11, cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][15] = [values@11, cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][16] = [values@11, cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][17] = [values@11, cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][1] = [cursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][2] = [cursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][3] = [cursor@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][4] = [cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][5] = [cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][6] = [cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][7] = [cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][8] = [cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManager::restartDownload][9] = [cursor@1, status@5]
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::<init>][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::<init>][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::<init>][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::onChange][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::onChange][1] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::onChange][2] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::onChange][3] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadManagerContentObserver::onChange][4] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::<init>][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::<init>][1] = [mContext@1]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::<init>][2] = [mContext@1, mNotificationMgr@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::<init>][3] = [mContext@1, mNotification@3, mNotificationMgr@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::<init>][4] = [mContext@1, mNotification@3, mNotificationMgr@2]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][0] = []
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][10] = [idColumn@7, c@1, descColumn@9, c@3, ownerColumn@10, titleColumn@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][11] = [idColumn@7, c@1, descColumn@9, c@3, classOwnerColumn@11, ownerColumn@10, titleColumn@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][12] = [idColumn@7, c@1, descColumn@9, currentBytesColumn@12, c@3, classOwnerColumn@11, ownerColumn@10, titleColumn@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][13] = [idColumn@7, c@1, descColumn@9, currentBytesColumn@12, c@3, classOwnerColumn@11, totalBytesColumn@13, ownerColumn@10, titleColumn@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][14] = [idColumn@7, c@1, descColumn@9, currentBytesColumn@12, c@3, classOwnerColumn@11, totalBytesColumn@13, ownerColumn@10, titleColumn@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][15] = [idColumn@7, c@1, descColumn@9, currentBytesColumn@12, c@3, classOwnerColumn@11, totalBytesColumn@13, ownerColumn@10, titleColumn@8]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][16] = [title@23, idColumn@7, descColumn@9, classOwnerColumn@11, ownerColumn@10, progress@19, titleColumn@8, max@18, title@21, packageName@17, c@1, currentBytesColumn@12, id@20, c@3, totalBytesColumn@13, desc@24]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][17] = [title@23, idColumn@7, descColumn@9, classOwnerColumn@11, ownerColumn@10, progress@19, titleColumn@8, max@18, title@21, packageName@17, c@1, currentBytesColumn@12, id@20, c@3, totalBytesColumn@13, desc@24]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][18] = [title@23, idColumn@7, descColumn@9, classOwnerColumn@11, ownerColumn@10, progress@19, titleColumn@8, max@18, title@21, packageName@17, c@1, currentBytesColumn@12, id@20, c@3, totalBytesColumn@13, desc@24]
m[https://github.com/1mobilesuper/1mobile_download][DownloadNotification::updateActiveNotification][19] = [title@23, idColumn@7, descColumn@9, classOwnerColumn@11, ownerColumn@10, progress@19, titleColu
... remaining output not shown, please download output.

Compilation

Status: Finished
Started: Sat, 21 Dec 2019 15:38:23 -0600
Finished: Sat, 21 Dec 2019 15:38:32 -0600 (9s)

Execution

Status: Finished
Started: Sat, 21 Dec 2019 15:38:42 -0600
Finished: Sat, 21 Dec 2019 15:39:59 -0600 (1m 17s)