Searched defs:location (Results 1 - 25 of 197) sorted by path

12345678

/frameworks/av/media/libaudioclient/
H A DAudioTrack.cpp2469 ExtendedTimestamp::Location location; local
2470 status = ets.getBestTimestamp(&timestamp, &location);
2473 // It is possible that the best location has moved from the kernel to the server.
2475 if (location == ExtendedTimestamp::LOCATION_SERVER) {
2477 "getTimestamp() location moved from kernel to server");
2494 if (frames >= ets.mPosition[location]) {
2497 timestamp.mPosition = (uint32_t)(ets.mPosition[location] - frames);
2499 } else if (location == ExtendedTimestamp::LOCATION_KERNEL) {
2501 "getTimestamp() location moved from server to kernel");
2523 mPreviousLocation = location;
2797 pendingDuration(int32_t *msec, ExtendedTimestamp::Location location) argument
2892 int location = ExtendedTimestamp::LOCATION_SERVER; // for ALOG local
[all...]
/frameworks/av/media/libstagefright/
H A DAudioSource.cpp302 ExtendedTimestamp::Location location; local
307 &location) == OK) {
/frameworks/av/media/ndk/
H A DNdkMediaExtractor.cpp81 media_status_t AMediaExtractor_setDataSource(AMediaExtractor *mData, const char *location) { argument
82 ALOGV("setDataSource(%s)", location);
107 jstring jloc = env->NewStringUTF(location);
118 status_t err = mData->mImpl->setDataSource(httpService, location, NULL);
/frameworks/base/core/java/android/hardware/camera2/
H A DDngCreator.java26 import android.location.Location;
249 * Set image location metadata.
252 * The given location object must contain at least a valid time, latitude, and longitude
253 * (equivalent to the values returned by {@link android.location.Location#getTime()},
254 * {@link android.location.Location#getLatitude()}, and
255 * {@link android.location.Location#getLongitude()} methods).
258 * @param location an {@link android.location.Location} object to set.
261 * @throws java.lang.IllegalArgumentException if the given location object doesn't
262 * contain enough information to set location metadat
265 setLocation(@onNull Location location) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyRequestMapper.java27 import android.location.Location;
386 Location location = request.get(JPEG_GPS_LOCATION);
387 if (location != null) {
388 if (checkForCompleteGpsData(location)) {
389 params.setGpsAltitude(location.getAltitude());
390 params.setGpsLatitude(location.getLatitude());
391 params.setGpsLongitude(location.getLongitude());
392 params.setGpsProcessingMethod(location.getProvider().toUpperCase());
393 params.setGpsTimestamp(location.getTime());
395 Log.w(TAG, "Incomplete GPS parameters provided in location "
458 checkForCompleteGpsData(Location location) argument
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DActivityChangedEvent.java17 package android.hardware.location;
H A DActivityRecognitionEvent.java17 package android.hardware.location;
H A DActivityRecognitionHardware.java17 package android.hardware.location;
49 * com.android.location.provider.ActivityRecognitionProvider
H A DContextHubInfo.java16 package android.hardware.location;
H A DContextHubManager.java16 package android.hardware.location;
H A DContextHubMessage.java17 package android.hardware.location;
H A DGeofenceHardware.java16 package android.hardware.location;
19 import android.location.Location;
230 * <li> The location object indicating the last known location.
507 public void onGeofenceTransition(int geofenceId, int transition, Location location, argument
511 c.onGeofenceTransition(geofenceId, transition, location, timestamp,
H A DGeofenceHardwareCallback.java17 package android.hardware.location;
20 import android.location.Location;
36 * @param location The last known location according to the monitoring system.
41 public void onGeofenceTransition(int geofenceId, int transition, Location location, argument
H A DGeofenceHardwareImpl.java17 package android.hardware.location;
21 import android.location.IFusedGeofenceHardware;
22 import android.location.IGpsGeofenceHardware;
23 import android.location.Location;
472 Location location,
477 if(location == null) {
478 Log.e(TAG, String.format("Invalid Geofence Transition: location=null"));
484 "GeofenceTransition| " + location + ", transition:" + transition +
493 location,
510 Location location,
470 reportGeofenceTransition( int geofenceId, Location location, int transition, long transitionTimestamp, int monitoringType, int sourcesUsed) argument
507 reportGeofenceMonitorStatus( int monitoringType, int monitoringStatus, Location location, int source) argument
806 GeofenceTransition( int geofenceId, int transition, long timestamp, Location location, int monitoringType, int sourcesUsed) argument
[all...]
H A DGeofenceHardwareMonitorCallback.java17 package android.hardware.location;
20 import android.location.Location;
41 * @param location The last known location according to the monitoring system.
44 public void onMonitoringSystemChange(int monitoringType, boolean available, Location location) { argument
54 * {@link #onMonitoringSystemChange(int, boolean, android.location.Location)}.
H A DGeofenceHardwareMonitorEvent.java17 package android.hardware.location;
20 import android.location.Location;
40 Location location) {
44 mLocation = location;
69 * Returns the last known location according to the monitoring system.
83 Location location = source.readParcelable(classLoader);
89 location);
114 "GeofenceHardwareMonitorEvent: type=%d, status=%d, sources=%d, location=%s",
36 GeofenceHardwareMonitorEvent( int monitoringType, int monitoringStatus, int sourceTechnologies, Location location) argument
H A DGeofenceHardwareRequest.java17 package android.hardware.location;
H A DGeofenceHardwareRequestParcelable.java17 package android.hardware.location;
24 * Geofence Hardware Request used for internal location services communication.
H A DGeofenceHardwareService.java17 package android.hardware.location;
23 import android.location.IFusedGeofenceHardware;
24 import android.location.IGpsGeofenceHardware;
H A DMemoryRegion.java17 package android.hardware.location;
H A DNanoApp.java16 package android.hardware.location;
H A DNanoAppFilter.java17 package android.hardware.location;
H A DNanoAppInstanceInfo.java17 package android.hardware.location;
/frameworks/base/core/java/android/net/
H A DUri.java2345 public void checkFileUriExposed(String location) { argument
2348 StrictMode.onFileUriExposed(this, location);
2358 public void checkContentUriWithoutPermission(String location, int flags) { argument
2360 StrictMode.onContentUriWithoutPermission(this, location);
/frameworks/base/core/java/android/os/
H A DStrictMode.java1955 public static void onFileUriExposed(Uri uri, String location) { argument
1956 final String message = uri + " exposed beyond app through " + location;
1967 public static void onContentUriWithoutPermission(Uri uri, String location) { argument
1968 final String message = uri + " exposed beyond app through " + location

Completed in 9494 milliseconds

12345678