Searched refs:cookie (Results 1 – 5 of 5) sorted by relevance
/bootable/recovery/otautil/ |
D | verifier.cpp | 312 void* cookie{}; in IterateZipEntriesAndSearchForKeys() local 314 int32_t iter_status = StartIteration(handle, &cookie, "", "x509.pem"); in IterateZipEntriesAndSearchForKeys() 320 std::unique_ptr<void, decltype(&EndIteration)> cookie_guard(cookie, &EndIteration); in IterateZipEntriesAndSearchForKeys() 326 while ((iter_status = Next(cookie, &entry, &name)) == 0) { in IterateZipEntriesAndSearchForKeys()
|
/bootable/deprecated-ota/edify/include/edify/ |
D | expr.h | 33 State(const std::string& script, UpdaterInterface* cookie);
|
/bootable/deprecated-ota/updater/ |
D | blockimg.cpp | 362 static bool receive_new_data(const uint8_t* data, size_t size, void* cookie) { in receive_new_data() argument 363 NewThreadInfo* nti = static_cast<NewThreadInfo*>(cookie); in receive_new_data() 402 static bool receive_brotli_new_data(const uint8_t* data, size_t size, void* cookie) { in receive_brotli_new_data() argument 403 NewThreadInfo* nti = static_cast<NewThreadInfo*>(cookie); in receive_brotli_new_data() 466 static void* unzip_new_data(void* cookie) { in unzip_new_data() argument 467 NewThreadInfo* nti = static_cast<NewThreadInfo*>(cookie); in unzip_new_data()
|
/bootable/deprecated-ota/applypatch/ |
D | imgdiff.cpp | 677 void* cookie; in InitializeChunks() local 678 int ret = StartIteration(handle, &cookie); in InitializeChunks() 688 while ((ret = Next(cookie, &entry, &name)) == 0) { in InitializeChunks() 701 EndIteration(cookie); in InitializeChunks()
|
/bootable/libbootloader/gbl/libefi/src/ |
D | lib.rs | 420 let (tpl, c_callback, cookie): (EfiTpl, EfiEventNotify, *mut core::ffi::c_void) = match cb { in create_event() 438 cookie, in create_event()
|