Lines Matching refs:keyHistory
280 std::shared_ptr<KeyHistory> keyHistory; variable
296 keyHistory = std::make_shared<KeyHistory>(
298 mHistory[key] = keyHistory;
300 keyHistory = it->second;
310 status_t status = keyHistory->checkPermission(item->getUid());
323 keyHistory->putProp(name, prop, time);
353 std::shared_ptr<KeyHistory> keyHistory; variable
358 keyHistory = it->second;
361 return keyHistory->checkPermission(uidCheck)
362 ?: keyHistory->getValue(property, value, time);
374 std::shared_ptr<KeyHistory> keyHistory = variable
376 if (keyHistory == nullptr) return BAD_VALUE;
379 keyHistory->putValue(prop, std::forward<T>(e), time);
390 std::shared_ptr<KeyHistory> keyHistory = variable
392 if (keyHistory == nullptr) return BAD_VALUE;
395 return keyHistory->checkPermission(uidCheck)
396 ?: keyHistory->getValue(prop, value, time);