Lines Matching full:handle
18 using Handle = uint32_t; typedef
25 * PLDM File I/O. The file handle is used to uniquely identify the file. The
31 Handle handle; //!< File handle member
40 * file handle and extract the file attribute table. The file attribute table
41 * comprises of metadata for files. Metadata includes the file handle, file
67 /** @brief Get the FileEntry at the file handle
69 * @param[in] handle - file handle
71 * @return FileEntry - file entry at the handle
73 FileEntry at(Handle handle) const in at()
75 return tableEntries.at(handle); in at()
99 /** @brief handle to FileEntry mappings for lookups based on file handle */
100 std::unordered_map<Handle, FileEntry> tableEntries;