Home
last modified time | relevance | path

Searched refs:callbackInfo (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPackageInstaller.java48 CallbackInfo callbackInfo = new CallbackInfo(); in registerSessionCallback() local
49 callbackInfo.callback = callback; in registerSessionCallback()
50 callbackInfo.handler = handler; in registerSessionCallback()
51 this.callbackInfos.add(callbackInfo); in registerSessionCallback()
68 for (final CallbackInfo callbackInfo : callbackInfos) { in createSession()
69 callbackInfo.handler.post(new Runnable() { in createSession()
72 callbackInfo.callback.onCreated(sessionInfo.sessionId); in createSession()
85 for (final CallbackInfo callbackInfo : callbackInfos) { in abandonSession()
86 callbackInfo.handler.post(new Runnable() { in abandonSession()
89 callbackInfo.callback.onFinished(sessionId, false); in abandonSession()
[all …]
/external/mdnsresponder/mDNSCore/
DmDNSEmbeddedAPI.h1655 …t domainname *const name, const ZoneService target, ZoneDataCallback callback, void *callbackInfo);