Home | History | Annotate | Download | only in managerdefault

Lines Matching defs:propValue

2030     char propValue[PROPERTY_VALUE_MAX];
2031 if (property_get("audio.offload.disable", propValue, "0")) {
2032 if (atoi(propValue) != 0) {
2033 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2054 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2055 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2056 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);