Lines Matching refs:Permission

116 class SocketPermission : public Permission
134 ::rtl::Reference< Permission > const & next = ::rtl::Reference< Permission >() )
136 virtual bool implies( Permission const & perm ) const SAL_THROW( () );
144 ::rtl::Reference< Permission > const & next ) in SocketPermission()
146 : Permission( SOCKET, next ) in SocketPermission()
210 bool SocketPermission::implies( Permission const & perm ) const SAL_THROW( () ) in implies()
288 class FilePermission : public Permission
299 ::rtl::Reference< Permission > const & next = ::rtl::Reference< Permission >() )
301 virtual bool implies( Permission const & perm ) const SAL_THROW( () );
327 ::rtl::Reference< Permission > const & next ) in FilePermission()
329 : Permission( FILE, next ) in FilePermission()
370 bool FilePermission::implies( Permission const & perm ) const SAL_THROW( () ) in implies()
445 class RuntimePermission : public Permission
452 ::rtl::Reference< Permission > const & next = ::rtl::Reference< Permission >() ) in RuntimePermission()
454 : Permission( RUNTIME, next ) in RuntimePermission()
457 virtual bool implies( Permission const & perm ) const SAL_THROW( () );
461 bool RuntimePermission::implies( Permission const & perm ) const SAL_THROW( () ) in implies()
485 bool AllPermission::implies( Permission const & ) const SAL_THROW( () ) in implies()
546 for ( Permission * perm = m_head.get(); perm; perm = perm->m_next.get() ) in toStrings()
556 ::rtl::Reference< Permission > const & head, Permission const & demanded ) SAL_THROW( () ) in __implies()
558 for ( Permission * perm = head.get(); perm; perm = perm->m_next.get() ) in __implies()
569 Permission const & perm ) in demanded_diag()
583 Permission const & perm, Any const & demanded_perm ) in throwAccessControlException()