OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:async_id
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chromeos/cryptohome/
async_method_caller.cc
283
void HandleAsyncResponse(int
async_id
, bool return_status, int return_code) {
284
const CallbackMap::iterator it = callback_map_.find(
async_id
);
286
LOG(ERROR) << "Received signal for unknown
async_id
" <<
async_id
;
297
void HandleAsyncDataResponse(int
async_id
,
300
const DataCallbackMap::iterator it = data_callback_map_.find(
async_id
);
302
LOG(ERROR) << "Received signal for unknown
async_id
" <<
async_id
;
312
Callback callback, const char* error, int
async_id
) {
313
if (
async_id
== 0)
[
all
...]
/external/chromium/chrome/browser/chromeos/cros/
cryptohome_library.cc
226
const CallbackMap::iterator callback = callback_map_.find(event.
async_id
);
228
LOG(ERROR) << "Received signal for unknown
async_id
" << event.
async_id
;
236
bool CacheCallback(int
async_id
, Delegate* d, const char* error) {
237
if (
async_id
== 0) {
241
VLOG(1) << "Adding handler for " <<
async_id
;
242
callback_map_[
async_id
] = d;
/external/chromium_org/chromeos/dbus/
cryptohome_client.h
26
typedef base::Callback<void(int
async_id
,
31
typedef base::Callback<void(int
async_id
,
36
typedef base::Callback<void(int
async_id
)> AsyncMethodCallback;
cryptohome_client.cc
724
int
async_id
= 0;
local
725
if (!reader.PopInt32(&
async_id
)) {
729
callback.Run(
async_id
);
885
int
async_id
= 0;
local
901
int
async_id
= 0;
local
[
all
...]
Completed in 259 milliseconds