• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/

Lines Matching defs:allow

122 		"SELECT allow, requirement, id, label, expires, flags, disabled, filter_unsigned, remarks FROM scan_authority"
131 bool allow = int(query[0]);
179 this->recordOutcome(code, allow, type, min(expires, dateToJulian(limit)), id);
183 if (allow) {
201 cfadd(result, "{%O=%B}", kSecAssessmentAssessmentVerdict, allow);
382 bool allow = false;
394 allow = true;
397 if (allow) {
487 "SELECT allow, requirement, id, label, flags, disabled FROM scan_authority"
492 bool allow = int(query[0]);
519 if (allow)
526 cfadd(result, "{%O=%B}", kSecAssessmentAssessmentVerdict, allow);
708 bool allow = true;
721 allow = allowing == kCFBooleanTrue;
729 "INSERT INTO authority (type, allow, requirement, priority, label, expires, filter_unsigned, remarks, flags)"
730 " VALUES (:type, :allow, :requirement, :priority, :label, :expires, :filter_unsigned, :remarks, :flags);");
732 insert.bind(":allow").integer(allow);
786 selectRules(query, "SELECT scan_authority.id, scan_authority.type, scan_authority.requirement, scan_authority.allow, scan_authority.label, scan_authority.priority, scan_authority.remarks, scan_authority.expires, scan_authority.disabled, bookmarkhints.bookmark FROM scan_authority LEFT OUTER JOIN bookmarkhints ON scan_authority.id = bookmarkhints.authority",
794 int allow = int(query[3]);
805 kSecAssessmentRuleKeyAllow, allow ? kCFBooleanTrue : kCFBooleanFalse,
944 void PolicyEngine::recordOutcome(SecStaticCodeRef code, bool allow, AuthorityType type, double expires, SQLite::int64 authority)
955 "INSERT OR REPLACE INTO object (type, allow, hash, expires, path, authority)"
956 " VALUES (:type, :allow, :hash, :expires, :path,"
960 insert.bind(":allow").integer(allow);