Home
last modified time | relevance | path

Searched refs:code (Results 1 – 11 of 11) sorted by relevance

/bootable/recovery/recovery_ui/
Dui.cpp251 if (touch_screen_allowed_ && ev.code == SYN_REPORT) { in OnInputEvent()
267 if (ev.code == REL_Y) { in OnInputEvent()
288 if (ev.code == ABS_MT_SLOT) { in OnInputEvent()
294 switch (ev.code) { in OnInputEvent()
313 if (ev.type == EV_KEY && ev.code <= KEY_MAX) { in OnInputEvent()
315 if (ev.code == BTN_TOUCH) { in OnInputEvent()
324 if (ev.code == BTN_TOUCH || ev.code == BTN_TOOL_FINGER) { in OnInputEvent()
329 ProcessKey(ev.code, ev.value); in OnInputEvent()
/bootable/recovery/minui/
Devents.cpp201 for (int code = 0; code <= KEY_MAX; code++) { in ev_sync_key_state() local
202 if (test_bit(code, key_bits)) { in ev_sync_key_state()
203 set_key_cb(code, 1); in ev_sync_key_state()
/bootable/recovery/fonts/
DREADME5 https://code.google.com/p/googlefontdirectory/source/browse/ofl/inconsolata/
/bootable/recovery/tests/component/
Duncrypt_test.cpp123 int code = 0; in SetupOrClearBcb() local
124 ASSERT_TRUE(android::base::WriteFully(sockfd, &code, sizeof(int))); in SetupOrClearBcb()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateManager.java301 PrepareUpdateService.startService(context, config, mHandler, (code, payloadSpec) -> { in applyUpdate()
302 if (code != PrepareUpdateService.RESULT_CODE_SUCCESS) { in applyUpdate()
303 Log.e(TAG, "PrepareUpdateService failed, result code is " + code); in applyUpdate()
/bootable/recovery/minui/include/minui/
Dminui.h153 using ev_set_key_callback = std::function<int(int code, int value)>;
/bootable/recovery/uncrypt/
Duncrypt.cpp700 int code; in main() local
701 if (android::base::ReadFully(socket_fd, &code, 4)) { in main()
702 LOG(INFO) << " received " << code << ", exiting now"; in main()
/bootable/recovery/applypatch/
DNOTICE25 1. Redistributions of source code must retain the above copyright
/bootable/recovery/
DREADME.md56 Although `/system/bin/adbd` is built from the same code base as the one in the normal boot, only a
72 specific `/init.rc`, whose source code is at `bootable/recovery/etc/init.rc`.
DNOTICE40 including but not limited to software source code, documentation
45 not limited to compiled object code, generated documentation,
69 communication on electronic mailing lists, source code control systems,
Drecovery.cpp709 static void log_failure_code(ErrorCode code, const std::string& update_package) { in log_failure_code() argument
713 "error: " + std::to_string(code), in log_failure_code()