Searched refs:value (Results 1 – 7 of 7) sorted by relevance
/bootable/recovery/applypatch/ |
D | utils.c | 22 void Write4(int value, FILE* f) { in Write4() argument 23 fputc(value & 0xff, f); in Write4() 24 fputc((value >> 8) & 0xff, f); in Write4() 25 fputc((value >> 16) & 0xff, f); in Write4() 26 fputc((value >> 24) & 0xff, f); in Write4() 30 void Write8(long long value, FILE* f) { in Write8() argument 31 fputc(value & 0xff, f); in Write8() 32 fputc((value >> 8) & 0xff, f); in Write8() 33 fputc((value >> 16) & 0xff, f); in Write8() 34 fputc((value >> 24) & 0xff, f); in Write8() [all …]
|
D | utils.h | 24 void Write4(int value, FILE* f); 25 void Write8(long long value, FILE* f);
|
/bootable/recovery/ |
D | adb_install.cpp | 64 char value[PROPERTY_VALUE_MAX+1]; in maybe_restart_adbd() local 65 int len = property_get("ro.debuggable", value, NULL); in maybe_restart_adbd() 66 if (len == 1 && value[0] == '1') { in maybe_restart_adbd()
|
D | ui.cpp | 85 self->rel_sum += ev.value; in input_callback() 101 self->process_key(ev.code, ev.value); in input_callback()
|
/bootable/recovery/edify/ |
D | README | 87 expression. Their value is the value of the last-evaluated 94 get_it() || "xxx" # returns value of get_it() if that value is 99 but the operator can be used anywhere. Its value is the value of
|
/bootable/recovery/minui/ |
D | minui.h | 64 typedef int (*ev_set_key_callback)(int code, int value, void *data);
|
/bootable/recovery/updater/ |
D | install.c | 927 char value[PROPERTY_VALUE_MAX]; in GetPropFn() local 928 property_get(key, value, ""); in GetPropFn() 931 return StringValue(strdup(value)); in GetPropFn()
|