This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import os | |
| import struct | |
| # Try to import lzfse | |
| try: | |
| import lzfse | |
| LZFSE_AVAILABLE = True | |
| except ImportError: | |
| LZFSE_AVAILABLE = False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Ensure the script exits on any command failure | |
| set -e | |
| # Variables | |
| REMOTE="git-private" | |
| BRANCH="android-15-staging" | |
| COMMIT_LIMIT=50000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| #include <thread> | |
| #include <chrono> | |
| #include <iomanip> | |
| #include <fcntl.h> | |
| #include <unistd.h> | |
| #include <cstdint> | |
| #include <sys/ioctl.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (Official Video) | |
| [Music Video] | |
| | GRM Daily | |
| Official Music Video | |
| [Official Music Video] | |
| [Official Video] | |
| (Official Music Video) | |
| (Directed by Cole Bennett) | |
| (OFFICIAL MUSIC VIDEO) | |
| (Official Video) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CONFIG_KERNEL_LZ4=y | |
| # CONFIG_USELIB is not set | |
| CONFIG_AUDIT=y | |
| # CONFIG_AUDITSYSCALL is not set | |
| CONFIG_NO_HZ=y | |
| CONFIG_HIGH_RES_TIMERS=y | |
| CONFIG_IRQ_TIME_ACCOUNTING=y | |
| CONFIG_SCHED_WALT=y | |
| CONFIG_TASKSTATS=y | |
| CONFIG_TASK_XACCT=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while true; do resetprop ro.HOME_APP_ADJ 1;resetprop persist.radio.ramdump 0;resetprop pm.sleep_mode 1;resetprop persist.wpa_supplicant.debug false;resetprop dalvik.vm.checkjni false;resetprop dalvik.vm.check-dex-sum false;resetprop dalvik.vm.debug.alloc 0;resetprop dalvik.vm.deadlock-predict off;resetprop dalvik.vm.verify-bytecode false;resetprop libc.debug.malloc 0;resetprop debug.atrace.tags.enableflags 0;resetprop vidc.debug.level 0;resetprop debug.mdpcomp.logs 0;resetprop logd.logpersistd.enable false;resetprop ro.kernel.android.checkjni 0;resetprop touch.pressure.scale 0.5;resetprop ro.config.nocheckin 1;resetprop ro.kernel.checkjni 0;resetprop debug.sqlite.journalmode WAL;resetprop debug.sqlite.syncmode 1;resetprop profiler.launch false;resetprop profiler.force_disable_err_rpt 1;resetprop profiler.force_disable_ulog 1;resetprop profiler.debugmonitor false;resetprop profiler.hung.dumpdobugreport false;resetprop debugtool.anrhistory 0;resetprop video.accelerate.hw 1;resetprop trustkernel.log.state disabl |