(is64Bit, args, index)
| 118 | |
| 119 | |
| 120 | def genBackupMethod(is64Bit, args, index): |
| 121 | java_type = JAVA_TYPE_LONG if is64Bit else JAVA_TYPE_INT |
| 122 | args_list_def = genArgsList(is64Bit, True, args) |
| 123 | method = TEMP_STUB_BACKUP_METHOD % (java_type, getMethodBackupName(index), args_list_def, getMethodId(args, index)) |
| 124 | return method |
| 125 | |
| 126 | def genCallOriginClass(is64Bit, args, index): |
| 127 | method = TEMP_STUB_CALL_ORIGIN_CLASS % (getCallOriginClassName(args, index), getMethodBackupName(index), genArgsListForCallOriginMethod(is64Bit, args)) |
no test coverage detected