#include <fnmatch.h>
#include <iostream>
#include <fstream>
#include <vector>
#include "zypp/base/LogTools.h"
#include "zypp/base/IOStream.h"
#include "zypp/AutoDispose.h"
#include "zypp/PathInfo.h"
#include "zypp/target/modalias/Modalias.h"
Go to the source code of this file.
Namespaces | |
namespace | zypp |
namespace | zypp::target |
Classes | |
struct | zypp::target::Modalias::Impl |
Modalias implementation. More... | |
Defines | |
#define | ZYPP_BASE_LOGGER_LOGGROUP "MODALIAS" |
#define | PATH_IS(D, F) ( ::strcmp( file_r, F ) == 0 && ::strcmp( dir_r.c_str(), D ) == 0 ) |
Functions | |
bool | zypp::target::isBlackListed (const Pathname &dir_r, const char *file_r) |
Filter subtrees known to contain no modalias files. | |
void | zypp::target::foreach_file_recursive (const Pathname &dir_r, Modalias::ModaliasList &arg) |
Recursively scan for modalias files and scan them to arg. | |
std::ostream & | zypp::target::operator<< (std::ostream &str, const Modalias &obj) |
Definition in file Modalias.cc.
#define ZYPP_BASE_LOGGER_LOGGROUP "MODALIAS" |
Definition at line 22 of file Modalias.cc.
#define PATH_IS | ( | D, | |||
F | ) | ( ::strcmp( file_r, F ) == 0 && ::strcmp( dir_r.c_str(), D ) == 0 ) |
Referenced by zypp::target::isBlackListed().