• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Security-57031.1.35/securityd/src/

Lines Matching defs:Token

49 // SSID -> Token map
51 Token::SSIDMap Token::mSubservices;
52 // Make sure to always take mSSIDLock after we take the Token lock
54 Mutex Token::mSSIDLock;
58 // Token construction and destruction is trivial; the good stuff
61 Token::Token()
68 Token::~Token()
75 Reader &Token::reader() const
80 TokenDaemon &Token::tokend()
96 GenericHandle Token::tokenHandle() const
103 // Token is the SecurityServerAcl for the token
105 AclKind Token::aclKind() const
110 Token &Token::token()
117 // Find Token by subservice id.
120 RefPointer<Token> Token::find(uint32 ssid)
134 void Token::getAcl(const char *tag, uint32 &count, AclEntryInfo *&acls)
154 // A Token has a "reset level", a number that is incremented whenever a token
156 // own matching level, which is that of the Token's when the ACL was last synchronized
159 // Note that a Token starts with a level of 1, while ACLs start at zero. This forces
162 Token::ResetGeneration Token::resetGeneration() const
167 void Token::resetAcls()
182 void Token::addCommon(TokenDbCommon &dbc)
188 void Token::removeCommon(TokenDbCommon &dbc)
197 // Process the logical insertion of a Token into a Reader.
203 void Token::insert(::Reader &slot, RefPointer<TokenDaemon> tokend)
219 // take Token lock and hold throughout insertion
233 mCache = new TokenCache::Token(reader().cache,
238 mCache = new TokenCache::Token(reader().cache);
250 (mCache->type() != TokenCache::Token::existing ? kSecTokendEstablishNewCache : 0) | kSecTokendEstablishMakeMDS,
255 if (mCache->type() == TokenCache::Token::existing) {
266 if (mCache->type() != TokenCache::Token::existing)
321 // Process the logical removal of a Token from a Reader.
331 void Token::remove()
362 void Token::fault(bool async)
384 void Token::relayFault(bool async)
392 // This is the "kill" hook for Token as a Node<> object.
394 void Token::kill()
422 void Token::notify(NotificationEvent event)
447 RefPointer<TokenDaemon> Token::chooseTokend()
487 // Token::Access mediates calls through TokenDaemon to the actual daemon out there.
489 Token::Access::Access(Token &myToken)
495 Token::Access::~Access()
505 void Token::dumpNode()