/frameworks/base/location/java/com/android/internal/location/ |
ProviderRequest.java | 30 public boolean reportLocation = false; 51 request.reportLocation = in.readInt() == 1; 72 parcel.writeInt(reportLocation ? 1 : 0); 84 if (reportLocation) {
|
/frameworks/base/services/java/com/android/server/location/ |
PassiveProvider.java | 96 mReportLocation = request.reportLocation; 103 mLocationManager.reportLocation(location, true); 105 Log.e(TAG, "RemoteException calling reportLocation");
|
MockProvider.java | 113 mLocationManager.reportLocation(mLocation, false); 115 Log.e(TAG, "RemoteException calling reportLocation");
|
GpsLocationProvider.java | [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_symbolize.cc | 99 ReportLocation *SymbolizeData(uptr addr) { 106 ReportLocation *ent = (ReportLocation*)internal_alloc(MBlockReportStack, 107 sizeof(ReportLocation));
|
tsan_report.h | 67 struct ReportLocation { 101 Vector<ReportLocation*> locs;
|
tsan_suppressions.h | 24 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
|
tsan_symbolize.h | 22 ReportLocation *SymbolizeData(uptr addr);
|
tsan_rtl_report.cc | 307 void *mem = internal_alloc(MBlockReportLoc, sizeof(ReportLocation)); 308 ReportLocation *loc = new(mem) ReportLocation(); 329 void *mem = internal_alloc(MBlockReportLoc, sizeof(ReportLocation)); 330 ReportLocation *loc = new(mem) ReportLocation(); 353 void *mem = internal_alloc(MBlockReportLoc, sizeof(ReportLocation)); 354 ReportLocation *loc = new(mem) ReportLocation(); 360 ReportLocation *loc = SymbolizeData(addr) [all...] |
tsan_suppressions.cc | 117 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) {
|
tsan_report.cc | 110 static void PrintLocation(const ReportLocation *loc) {
|
tsan_rtl.h | 608 const ReportLocation *suppress_loc = 0);
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
ProviderRequestUnbundled.java | 41 return mRequest.reportLocation;
|
LocationProviderBase.java | 135 public final void reportLocation(Location location) { 137 mLocationManager.reportLocation(location, false);
|
/frameworks/base/location/java/android/location/ |
ILocationManager.aidl | 87 void reportLocation(in Location location, boolean passive);
|
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/ |
FusionEngine.java | 40 public void reportLocation(Location location); 255 mCallback.reportLocation(mFusedLocation);
|
/external/compiler-rt/lib/tsan/go/ |
tsan_go.cc | 34 ReportLocation *SymbolizeData(uptr addr) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/ |
apitooling-ant.jar | |
/frameworks/base/services/java/com/android/server/ |
LocationManagerService.java | [all...] |
/frameworks/base/services/jni/ |
com_android_server_location_GpsLocationProvider.cpp | 339 method_reportLocation = env->GetMethodID(clazz, "reportLocation", "(IDDDFFFJ)V");
|