/src/sys/external/bsd/acpica/dist/os_specific/service_layers/ |
osunixdir.c | 246 struct dirent *dir_entry; local in function:AcpiOsGetNextFilename 253 while ((dir_entry = readdir (ExternalInfo->DirPtr))) 255 if (!fnmatch (ExternalInfo->WildcardSpec, dir_entry->d_name, 0)) 257 if (dir_entry->d_name[0] == '.') 262 str_len = strlen (dir_entry->d_name) + 275 strcat (temp_str, dir_entry->d_name); 295 /* copy to a temp buffer because dir_entry struct is on the stack */ 297 strcpy (ExternalInfo->temp_buffer, dir_entry->d_name);
|
osunixdir.c | 246 struct dirent *dir_entry; local in function:AcpiOsGetNextFilename 253 while ((dir_entry = readdir (ExternalInfo->DirPtr))) 255 if (!fnmatch (ExternalInfo->WildcardSpec, dir_entry->d_name, 0)) 257 if (dir_entry->d_name[0] == '.') 262 str_len = strlen (dir_entry->d_name) + 275 strcat (temp_str, dir_entry->d_name); 295 /* copy to a temp buffer because dir_entry struct is on the stack */ 297 strcpy (ExternalInfo->temp_buffer, dir_entry->d_name);
|
osunixdir.c | 246 struct dirent *dir_entry; local in function:AcpiOsGetNextFilename 253 while ((dir_entry = readdir (ExternalInfo->DirPtr))) 255 if (!fnmatch (ExternalInfo->WildcardSpec, dir_entry->d_name, 0)) 257 if (dir_entry->d_name[0] == '.') 262 str_len = strlen (dir_entry->d_name) + 275 strcat (temp_str, dir_entry->d_name); 295 /* copy to a temp buffer because dir_entry struct is on the stack */ 297 strcpy (ExternalInfo->temp_buffer, dir_entry->d_name);
|