Searched refs:value (Results 1 – 8 of 8) 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/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 | 65 typedef int (*ev_set_key_callback)(int code, int value, void* data);
|
/bootable/recovery/ |
D | ui.cpp | 104 rel_sum += ev.value; in OnInputEvent() 120 ProcessKey(ev.code, ev.value); in OnInputEvent()
|
D | recovery.cpp | 170 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/ |
D | blockimg.c | 1314 char* value = NULL; in PerformCommandDiff() local 1330 value = strtok_r(NULL, " ", ¶ms->cpos); in PerformCommandDiff() 1332 if (value == NULL) { in PerformCommandDiff() 1337 offset = strtoul(value, NULL, 0); in PerformCommandDiff() 1339 value = strtok_r(NULL, " ", ¶ms->cpos); in PerformCommandDiff() 1341 if (value == NULL) { in PerformCommandDiff() 1346 len = strtoul(value, NULL, 0); in PerformCommandDiff()
|
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()
|