OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ICarImpl
(Results
1 - 2
of
2
) sorted by null
/packages/services/Car/service/src/com/android/car/
CarService.java
32
private
ICarImpl
mICarImpl;
37
mICarImpl =
ICarImpl
.getInstance(this);
44
ICarImpl
.releaseInstance();
65
ICarImpl
.getInstance(this).dump(writer);
ICarImpl.java
34
public class
ICarImpl
extends ICar.Stub {
43
@GuardedBy("
ICarImpl
.class")
44
private static
ICarImpl
sInstance = null;
70
public synchronized static
ICarImpl
getInstance(Context serviceContext) {
72
sInstance = new
ICarImpl
(serviceContext);
86
public
ICarImpl
(Context serviceContext) {
Completed in 79 milliseconds