Home
last modified time | relevance | path

Searched refs:dir_info (Results 1 – 3 of 3) sorted by relevance

/reactos/modules/rostests/winetests/ntdll/
H A Ddirectory.c150 static void tally_test_file(FILE_BOTH_DIRECTORY_INFORMATION *dir_info) in tally_test_file() argument
155 DWORD attrib = dir_info->FileAttributes & attribmask; in tally_test_file()
156 WCHAR *nameW = dir_info->FileName; in tally_test_file()
157 int namelen = dir_info->FileNameLength / sizeof(WCHAR); in tally_test_file()
183 FILE_BOTH_DIRECTORY_INFORMATION *dir_info; in test_flags_NtQueryDirectoryFile() local
217 dir_info = (FILE_BOTH_DIRECTORY_INFORMATION *)(data + data_pos); in test_flags_NtQueryDirectoryFile()
219 tally_test_file(dir_info); in test_flags_NtQueryDirectoryFile()
221 if (dir_info->NextEntryOffset == 0) { in test_flags_NtQueryDirectoryFile()
233 data_pos += dir_info->NextEntryOffset; in test_flags_NtQueryDirectoryFile()
812 name = dir_info->FileName; in test_NtQueryDirectoryFile_case()
[all …]
/reactos/base/services/nfsd/
H A Dnfs41_ops.c398 nfs41_file_info tmp_info, dir_info; in nfs41_open() local
500 pgetattr_res.info = &dir_info; in nfs41_open()
509 if (dir_info.type == NF4ATTRDIR) { in nfs41_open()
553 nfs41_file_info dir_info; in nfs41_create() local
594 pgetattr_res.info = &dir_info; in nfs41_create()
608 memcpy(&dir_info.attrmask, &pgetattr_res.obj_attributes.attrmask, in nfs41_create()
611 parent->fh.fileid, &dir_info); in nfs41_create()
/reactos/sdk/lib/rtl/
H A Dactctx.c3292 FILE_BOTH_DIR_INFORMATION *dir_info; in lookup_manifest_file() local
3308 dir_info = (FILE_BOTH_DIR_INFORMATION*)(buffer + data_pos); in lookup_manifest_file()
3310 if (dir_info->NextEntryOffset) data_pos += dir_info->NextEntryOffset; in lookup_manifest_file()
3313 tmp = (WCHAR *)dir_info->FileName + (wcschr(lookup, '*') - lookup); in lookup_manifest_file()
3321 …if (dir_info->FileNameLength - (tmp - dir_info->FileName) * sizeof(WCHAR) == sizeof(wine_trailerW)… in lookup_manifest_file()
3336 … if ((ret = RtlAllocateHeap( GetProcessHeap(), 0, dir_info->FileNameLength + sizeof(WCHAR) ))) in lookup_manifest_file()
3338 memcpy( ret, dir_info->FileName, dir_info->FileNameLength ); in lookup_manifest_file()
3339 ret[dir_info->FileNameLength/sizeof(WCHAR)] = 0; in lookup_manifest_file()