Home
last modified time | relevance | path

Searched refs:apiLevel (Results 1 – 12 of 12) sorted by relevance

/frameworks/rs/script_api/
DGenerateRSFunctionsList.cpp62 static string findSubstitute(const string& typeName, unsigned int apiLevel, int intSize) { in findSubstitute() argument
69 if (!info.includesVersion(apiLevel) || (info.intSize != 0 && info.intSize != intSize)) { in findSubstitute()
96 list<string> expandTypedefs(const string type, unsigned int apiLevel, int intSize, string& vectorSi… in expandTypedefs() argument
102 const string substitute = findSubstitute(*i, apiLevel, intSize); in expandTypedefs()
296 unsigned int apiLevel, int intSize) { in writeParameters() argument
308 list<string> tokens = expandTypedefs(p->rsType, apiLevel, intSize, vectorSize); in writeParameters()
327 bool overloadable, unsigned int apiLevel, in addFunctionManglingToSet() argument
334 if (!writeParameters(&stream, permutation.getParams(), apiLevel, intSize)) { in addFunctionManglingToSet()
370 for (int64_t apiLevel = minApiLevel; apiLevel <= maxApiLevel; ++apiLevel) { in addManglingsForSpecification() local
374 apiLevel, 32, allManglings)) { in addManglingsForSpecification()
[all …]
/frameworks/base/core/java/android/app/
DBroadcastOptions.java112 public void setMinManifestReceiverApiLevel(int apiLevel) { in setMinManifestReceiverApiLevel() argument
113 mMinManifestReceiverApiLevel = apiLevel; in setMinManifestReceiverApiLevel()
130 public void setMaxManifestReceiverApiLevel(int apiLevel) { in setMaxManifestReceiverApiLevel() argument
131 mMaxManifestReceiverApiLevel = apiLevel; in setMaxManifestReceiverApiLevel()
/frameworks/base/services/core/java/com/android/server/camera/
DCameraServiceProxy.java138 public CameraUsageEvent(int facing, String clientName, int apiLevel) { in CameraUsageEvent() argument
141 mAPILevel = apiLevel; in CameraUsageEvent()
205 String clientName, int apiLevel) {
214 state + " for client " + clientName + " API Level " + apiLevel);
216 updateActivityCount(cameraId, newCameraState, facing, clientName, apiLevel);
424 String clientName, int apiLevel) { in updateActivityCount() argument
463 CameraUsageEvent newEvent = new CameraUsageEvent(facing, clientName, apiLevel); in updateActivityCount()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/resources/
DSysUiResources.java46 public static BridgeXmlBlockParser loadXml(BridgeContext context, int apiLevel, String in loadXml() argument
48 for (String resourceRepository : Config.getResourceDirs(apiLevel)) { in loadXml()
/frameworks/av/camera/aidl/android/hardware/
DICameraServiceProxy.aidl58 String clientName, int apiLevel); in notifyCameraState() argument
/frameworks/av/services/camera/libcameraservice/
DCameraService.h78 enum apiLevel { enum
211 int apiLevel);
259 virtual bool canCastToApiClient(apiLevel level) const;
376 virtual bool canCastToApiClient(apiLevel level) const;
641 apiLevel effectiveApiLevel, const sp<IBinder>& remoteCallback, const String8& packageName,
656 int clientUid, int clientPid, apiLevel effectiveApiLevel, bool shimUpdateOnly,
957 int halVersion, int deviceVersion, apiLevel effectiveApiLevel,
DCameraService.cpp660 int halVersion, int deviceVersion, apiLevel effectiveApiLevel, in makeClient()
1101 apiLevel effectiveApiLevel, const sp<IBinder>& remoteCallback, const String8& packageName, in handleEvictionsLocked()
1398 int clientPid, apiLevel effectiveApiLevel, bool shimUpdateOnly, in connectHelper()
2472 bool CameraService::BasicClient::canCastToApiClient(apiLevel level) const { in canCastToApiClient()
2512 int apiLevel = hardware::ICameraServiceProxy::CAMERA_API_LEVEL_1; in startCameraOps() local
2514 apiLevel = hardware::ICameraServiceProxy::CAMERA_API_LEVEL_2; in startCameraOps()
2518 mCameraIdStr, mCameraFacing, mClientPackageName, apiLevel); in startCameraOps()
2549 int apiLevel = hardware::ICameraServiceProxy::CAMERA_API_LEVEL_1; in finishCameraOps() local
2551 apiLevel = hardware::ICameraServiceProxy::CAMERA_API_LEVEL_2; in finishCameraOps()
2555 mCameraIdStr, mCameraFacing, mClientPackageName, apiLevel); in finishCameraOps()
[all …]
/frameworks/base/libs/hwui/hwui/
DCanvas.cpp258 void Canvas::setCompatibilityVersion(int apiLevel) { in setCompatibilityVersion() argument
259 sApiLevel = apiLevel; in setCompatibilityVersion()
DCanvas.h132 static void setCompatibilityVersion(int apiLevel);
/frameworks/base/graphics/java/android/graphics/
DCanvas.java1370 public static void setCompatibilityVersion(int apiLevel) { in setCompatibilityVersion() argument
1371 sCompatiblityVersion = apiLevel; in setCompatibilityVersion()
1372 nSetCompatibilityVersion(apiLevel); in setCompatibilityVersion()
1378 private static native void nSetCompatibilityVersion(int apiLevel); in nSetCompatibilityVersion() argument
/frameworks/layoutlib/bridge/src/android/graphics/
DCanvas_Delegate.java472 /*package*/ static void nSetCompatibilityVersion(int apiLevel) { in nSetCompatibilityVersion() argument
/frameworks/base/core/jni/
Dandroid_graphics_Canvas.cpp650 static void setCompatibilityVersion(JNIEnv* env, jobject, jint apiLevel) { in setCompatibilityVersion() argument
651 Canvas::setCompatibilityVersion(apiLevel); in setCompatibilityVersion()