OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:search_dir_entries
(Results
1 - 4
of
4
) sorted by null
/external/e2fsprogs/ext2ed/
dir_com.c
82
struct struct_file_info
search_dir_entries
(int (*action) (struct struct_file_info *info),int *status)
function
151
This function counts the number of entries in the directory. We just call
search_dir_entries
till the end.
152
The client function is action_count, which just tell
search_dir_entries
to continue.
159
return (
search_dir_entries
(&action_count,&status).dir_entry_num);
166
Used by count_dir_entries above - This function is called by
search_dir_entries
, and it tells it to continue
190
search_dir_entries
, which accepts the action_name function as the client function.
192
4.
search_dir_entries
will scan the entire entries and will call our action_name function for each entry.
257
info=
search_dir_entries
(&action_name,&status); /* Search for the entry. Answer in info. */
340
search_dir_entries
is used along with action_entry_num, in the same fashion as the previous usage of
search_dir_entries
[
all
...]
ext2ed.h
378
struct struct_file_info
search_dir_entries
(int (*action) (struct struct_file_info *info),int *status);
inode_com.c
357
/* It is very important to init first_file_info first, as
search_dir_entries
relies on it */
/external/e2fsprogs/ext2ed/doc/
ext2ed-design.sgml
[
all
...]
Completed in 972 milliseconds