Lines Matching refs:Permission
40 class Permission : public ::salhelper::SimpleReferenceObject class
43 ::rtl::Reference< Permission > m_next;
47 inline Permission( in Permission() function in stoc_sec::Permission
49 ::rtl::Reference< Permission > const & next = ::rtl::Reference< Permission >() ) in Permission()
55 virtual bool implies( Permission const & perm ) const SAL_THROW( () ) = 0;
59 class AllPermission : public Permission
63 ::rtl::Reference< Permission > const & next = ::rtl::Reference< Permission >() )
65 : Permission( ALL, next )
68 virtual bool implies( Permission const & ) const SAL_THROW( () );
75 ::rtl::Reference< Permission > m_head;
82 inline PermissionCollection( ::rtl::Reference< Permission > const & single ) SAL_THROW( () )