MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / MetaiMatch

Function MetaiMatch

rEFIt_UEFI/refit/lib.cpp:1509–1521  ·  view source on GitHub ↗

file name manipulation

Source from the content-addressed store, hash-verified

1507// file name manipulation
1508//
1509BOOLEAN
1510MetaiMatch (
1511 IN CONST CHAR16 *String,
1512 IN CONST CHAR16 *Pattern
1513 )
1514{
1515 if (!mUnicodeCollation) {
1516 // quick fix for driver loading on UEFIs without UnicodeCollation
1517 //return FALSE;
1518 return TRUE; //this is wrong anyway
1519 }
1520 return mUnicodeCollation->MetaiMatch (mUnicodeCollation, String, Pattern);
1521}
1522
1523
1524EFI_STATUS

Callers 1

DirIterNextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected