summaryrefslogtreecommitdiffstats
path: root/twrp-functions.hpp
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2014-02-07 19:46:59 +0100
committerGerrit Code Review <gerrit2@gerrit>2014-02-07 19:46:59 +0100
commit3b2be98ca45a6c6f50b8d68cfafd5509c40d670d (patch)
tree0c717c6345b33d79ecb06348c45b439feaa65a00 /twrp-functions.hpp
parentMerge "Restore contexts when doing mkdierhier in libtar Do a restore of loaded file contexts to /data/media directory. This will help denials to be prevented when internal storage is wiped." into android-4.4 (diff)
parentAdd option to print render time of each frame to log file (diff)
downloadandroid_bootable_recovery-3b2be98ca45a6c6f50b8d68cfafd5509c40d670d.tar
android_bootable_recovery-3b2be98ca45a6c6f50b8d68cfafd5509c40d670d.tar.gz
android_bootable_recovery-3b2be98ca45a6c6f50b8d68cfafd5509c40d670d.tar.bz2
android_bootable_recovery-3b2be98ca45a6c6f50b8d68cfafd5509c40d670d.tar.lz
android_bootable_recovery-3b2be98ca45a6c6f50b8d68cfafd5509c40d670d.tar.xz
android_bootable_recovery-3b2be98ca45a6c6f50b8d68cfafd5509c40d670d.tar.zst
android_bootable_recovery-3b2be98ca45a6c6f50b8d68cfafd5509c40d670d.zip
Diffstat (limited to 'twrp-functions.hpp')
-rw-r--r--twrp-functions.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/twrp-functions.hpp b/twrp-functions.hpp
index eb88ae2f3..587d7725e 100644
--- a/twrp-functions.hpp
+++ b/twrp-functions.hpp
@@ -60,6 +60,7 @@ public:
static int copy_file(string src, string dst, int mode); //copy file from src to dst with mode permissions
static unsigned int Get_D_Type_From_Stat(string Path); // Returns a dirent dt_type value using stat instead of dirent
static timespec timespec_diff(timespec& start, timespec& end); // Return a diff for 2 times
+ static int32_t timespec_diff_ms(timespec& start, timespec& end); // Returns diff in ms
static int read_file(string fn, vector<string>& results); //read from file
static int read_file(string fn, string& results); //read from file
static int write_file(string fn, string& line); //write from file