HomeSort by relevance Sort by last modified time
    Searched refs:getIntField (Results 1 - 8 of 8) sorted by null

  /system/core/healthd/
BatteryMonitor.cpp 199 int BatteryMonitor::getIntField(const String8& path) {
222 getIntField(mHealthdConfig->batteryCapacityPath);
223 props.batteryVoltage = getIntField(mHealthdConfig->batteryVoltagePath) / 1000;
226 props.batteryCurrent = getIntField(mHealthdConfig->batteryCurrentNowPath) / 1000;
229 props.batteryFullCharge = getIntField(mHealthdConfig->batteryFullChargePath);
232 props.batteryCycleCount = getIntField(mHealthdConfig->batteryCycleCountPath);
235 props.batteryChargeCounter = getIntField(mHealthdConfig->batteryChargeCounterPath);
239 getIntField(mHealthdConfig->batteryTemperaturePath);
294 (access(path.string(), R_OK) == 0) ? getIntField(path) : 0;
301 (access(path.string(), R_OK) == 0) ? getIntField(path)
    [all...]
  /system/core/healthd/include/healthd/
BatteryMonitor.h 61 int getIntField(const String8& path);
  /frameworks/opt/net/wifi/service/jni/
com_android_server_wifi_nan_WifiNanNative.cpp 256 msg.master_pref = helper.getIntField(config_request, "mMasterPreference");
257 msg.cluster_low = helper.getIntField(config_request, "mClusterLow");
258 msg.cluster_high = helper.getIntField(config_request, "mClusterHigh");
327 msg.service_specific_info_len = helper.getIntField(publish_data, "mServiceSpecificInfoLength");
334 msg.tx_match_filter_len = helper.getIntField(publish_data, "mTxFilterLength");
340 msg.rx_match_filter_len = helper.getIntField(publish_data, "mRxFilterLength");
346 msg.publish_type = (NanPublishType)helper.getIntField(publish_settings, "mPublishType");
347 msg.publish_count = helper.getIntField(publish_settings, "mPublishCount");
348 msg.ttl = helper.getIntField(publish_settings, "mTtlSec");
400 msg.service_specific_info_len = helper.getIntField(subscribe_data, "mServiceSpecificInfoLength")
    [all...]
com_android_server_wifi_WifiNative.cpp 462 params.base_period = helper.getIntField(settings, "base_period_ms");
463 params.max_ap_per_scan = helper.getIntField(settings, "max_ap_per_scan");
464 params.report_threshold_percent = helper.getIntField(settings, "report_threshold_percent");
465 params.report_threshold_num_scans = helper.getIntField(settings, "report_threshold_num_scans");
473 params.num_buckets = helper.getIntField(settings, "num_buckets");
481 params.buckets[i].bucket = helper.getIntField(bucket, "bucket");
482 params.buckets[i].band = (wifi_band) helper.getIntField(bucket, "band");
483 params.buckets[i].period = helper.getIntField(bucket, "period_ms");
484 params.buckets[i].max_period = helper.getIntField(bucket, "max_period_ms");
490 params.buckets[i].step_count = helper.getIntField(bucket, "step_count")
    [all...]
jni_helper.h 79 jint getIntField(jobject obj, const char *name);
jni_helper.cpp 99 jint JNIHelper::getIntField(jobject obj, const char *name)
108 return mEnv->GetIntField(obj, field);
  /art/tools/ahat/src/
InstanceUtils.java 100 int count = getIntField(inst, "count", numChars);
108 int offset = getIntField(inst, "offset", 0);
126 Integer width = getIntField(inst, "mWidth", null);
131 Integer height = getIntField(inst, "mHeight", null);
197 private static Integer getIntField(Instance inst, String fieldName, Integer def) {
  /art/test/439-npe/src/
Main.java 69 public static int $opt$getIntField(Main m) {
165 $opt$getIntField(null);
168 check(npe, thisLine += 6, methodLine += 4, "$opt$getIntField");

Completed in 181 milliseconds