Searched refs:iin (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/os/storage/
H A DIMountShutdownObserver.java48 IInterface iin = (IInterface) obj.queryLocalInterface(DESCRIPTOR);
49 if (((iin != null) && (iin instanceof IMountShutdownObserver))) {
50 return ((IMountShutdownObserver) iin);
H A DIObbActionListener.java49 IInterface iin = (IInterface) obj.queryLocalInterface(DESCRIPTOR);
50 if (((iin != null) && (iin instanceof IObbActionListener))) {
51 return ((IObbActionListener) iin);
H A DIMountServiceListener.java49 IInterface iin = (IInterface) obj.queryLocalInterface(DESCRIPTOR);
50 if (((iin != null) && (iin instanceof IMountServiceListener))) {
51 return ((IMountServiceListener) iin);
H A DIMountService.java1340 IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
1341 if (iin != null && iin instanceof IMountService) {
1342 return (IMountService) iin;
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp115 // IInterface iin = obj.queryLocalInterface(DESCRIPTOR)
119 Variable *iin = new Variable(iinType, "iin"); local
120 VariableDeclaration* iinVd = new VariableDeclaration(iin, queryLocalInterface, NULL);
127 // if (iin != null && iin instanceof <interfaceType>) return (<interfaceType>) iin;
128 Comparison* iinNotNull = new Comparison(iin, "!=", NULL_VALUE);
129 Comparison* instOfCheck = new Comparison(iin, " instanceof ",
134 instOfStatement->statements->Add(new ReturnStatement(new Cast(interfaceType, iin)));
[all...]

Completed in 119 milliseconds