Searched refs:ent (Results 1 - 7 of 7) sorted by relevance

/build/make/tools/atree/
H A Dfs.cpp57 struct dirent *ent; local
58 while (NULL != (ent = readdir(d))) {
59 if (0 == strcmp(".", ent->d_name)
60 || 0 == strcmp("..", ent->d_name)) {
65 full += ent->d_name;
66 bool is_directory = (ent->d_type == DT_DIR);
H A Dfiles.cpp440 struct dirent *ent; local
441 while (NULL != (ent = readdir(d))) {
442 if (0 == strcmp(".", ent->d_name)
443 || 0 == strcmp("..", ent->d_name)) {
446 if (matches_excludes(ent->d_name, excludes)) {
449 string entry = path_append(path, ent->d_name);
450 bool is_directory = (ent->d_type == DT_DIR);
/build/tools/atree/
H A Dfs.cpp57 struct dirent *ent; local
58 while (NULL != (ent = readdir(d))) {
59 if (0 == strcmp(".", ent->d_name)
60 || 0 == strcmp("..", ent->d_name)) {
65 full += ent->d_name;
66 bool is_directory = (ent->d_type == DT_DIR);
H A Dfiles.cpp440 struct dirent *ent; local
441 while (NULL != (ent = readdir(d))) {
442 if (0 == strcmp(".", ent->d_name)
443 || 0 == strcmp("..", ent->d_name)) {
446 if (matches_excludes(ent->d_name, excludes)) {
449 string entry = path_append(path, ent->d_name);
450 bool is_directory = (ent->d_type == DT_DIR);
/build/make/tools/libhost/
H A DCopyFile.c487 struct dirent* ent; local
492 ent = readdir(dir);
493 if (ent == NULL)
496 if (strcmp(ent->d_name, ".") == 0 ||
497 strcmp(ent->d_name, "..") == 0)
502 nameLen = strlen(ent->d_name);
509 memcpy(srcFile + srcLen+1, ent->d_name, nameLen +1);
514 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
/build/tools/libhost/
H A DCopyFile.c487 struct dirent* ent; local
492 ent = readdir(dir);
493 if (ent == NULL)
496 if (strcmp(ent->d_name, ".") == 0 ||
497 strcmp(ent->d_name, "..") == 0)
502 nameLen = strlen(ent->d_name);
509 memcpy(srcFile + srcLen+1, ent->d_name, nameLen +1);
514 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
/build/kati/
H A Ddep.cc104 for (const Entry& ent : rules_) {
105 if ((ent.suffix.empty() && name.empty()) ||
106 HasSuffix(name, ent.suffix.substr(1))) {
107 rules->push_back(ent.rule);

Completed in 6839 milliseconds