Home
last modified time | relevance | path

Searched refs:efn (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/providers/implementations/rands/seeding/
H A Drand_vms.c389 uint32_t efn; in data_collect_method() local
417 if ((status = lib$get_ef(&efn)) != SS$_NORMAL) { in data_collect_method()
421 if ((status = sys$getrmi(efn, 0, 0, RMI_items_64bit, &iosb, 0, 0)) in data_collect_method()
426 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
434 if ((status = sys$getrmi(efn, 0, 0, RMI_items, &iosb, 0, 0)) in data_collect_method()
439 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
447 if ((status = lib$free_ef(&efn)) != SS$_NORMAL) { in data_collect_method()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp1359 llvm::Expected<llvm::StringRef> efn = strings.getString(iter->FileNameOffset); in GetFileIndex() local
1360 if (!efn) { in GetFileIndex()
1361 return efn.takeError(); in GetFileIndex()
1365 auto fn_iter = llvm::find(cii.m_file_list, *efn); in GetFileIndex()