Home | History | Annotate | Download | only in SetupBrowserDxe

Lines Matching refs:ResultsDataSize

609   @param  ResultsDataSize        The size of the buffer associatedwith ResultsData.

626 IN OUT UINTN *ResultsDataSize,
662 if (*ResultsDataSize >= BufferSize) {
663 StrCpyS (*ResultsData, *ResultsDataSize / sizeof (CHAR16), StrPtr);
666 *ResultsDataSize = BufferSize;
703 @param ResultsDataSize A pointer to the size of the buffer associated
720 @retval EFI_BUFFER_TOO_SMALL The ResultsDataSize specified was too small to
728 IN OUT UINTN *ResultsDataSize,
742 if (ResultsDataSize == NULL || ResultsData == NULL) {
746 TotalSize = *ResultsDataSize;
836 Status = TotalSize <= *ResultsDataSize ? EFI_SUCCESS : EFI_BUFFER_TOO_SMALL;
837 *ResultsDataSize = TotalSize;