Lines Matching defs:entry
210 AVIODirEntry *entry;
215 *next = entry = ff_alloc_dir_entry();
216 if (!entry)
228 entry->type = AVIO_ENTRY_DIRECTORY;
231 entry->type = AVIO_ENTRY_FILE;
234 entry->type = AVIO_ENTRY_SHARE;
237 entry->type = AVIO_ENTRY_SERVER;
240 entry->type = AVIO_ENTRY_WORKGROUP;
249 entry->type = AVIO_ENTRY_UNKNOWN;
255 entry->name = av_strdup(dirent->name);
256 if (!entry->name) {
265 entry->group_id = st.st_gid;
266 entry->user_id = st.st_uid;
267 entry->size = st.st_size;
268 entry->filemode = st.st_mode & 0777;
269 entry->modification_timestamp = INT64_C(1000000) * st.st_mtime;
270 entry->access_timestamp = INT64_C(1000000) * st.st_atime;
271 entry->status_change_timestamp = INT64_C(1000000) * st.st_ctime;