Home
last modified time | relevance | path

Searched refs:value (Results 1 – 8 of 8) sorted by relevance

/bootable/recovery/applypatch/
Dutils.c22 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 …]
Dutils.h24 void Write4(int value, FILE* f);
25 void Write8(long long value, FILE* f);
/bootable/recovery/edify/
DREADME87 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/
Dminui.h65 typedef int (*ev_set_key_callback)(int code, int value, void* data);
/bootable/recovery/
Dui.cpp104 rel_sum += ev.value; in OnInputEvent()
120 ProcessKey(ev.code, ev.value); in OnInputEvent()
Drecovery.cpp170 char value[PROPERTY_VALUE_MAX+1]; in is_ro_debuggable() local
171 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1'); in is_ro_debuggable()
/bootable/recovery/updater/
Dblockimg.c1314 char* value = NULL; in PerformCommandDiff() local
1330 value = strtok_r(NULL, " ", &params->cpos); in PerformCommandDiff()
1332 if (value == NULL) { in PerformCommandDiff()
1337 offset = strtoul(value, NULL, 0); in PerformCommandDiff()
1339 value = strtok_r(NULL, " ", &params->cpos); in PerformCommandDiff()
1341 if (value == NULL) { in PerformCommandDiff()
1346 len = strtoul(value, NULL, 0); in PerformCommandDiff()
Dinstall.c927 char value[PROPERTY_VALUE_MAX]; in GetPropFn() local
928 property_get(key, value, ""); in GetPropFn()
931 return StringValue(strdup(value)); in GetPropFn()