/reactos/modules/rostests/kmtests/ntos_ob/ |
H A D | ObTypes.c | 16 IN PCWSTR TypeName) in GetObjectType() argument 24 RtlInitUnicodeString(&Name, TypeName); in GetObjectType() 42 #define CheckObjectType(TypeName, Variable, Flags, InvalidAttr, \ argument 58 trace(#TypeName "\n"); \ 59 ObjectType = GetObjectType(L"\\ObjectTypes\\" L ## #TypeName); \ 65 RtlInitUnicodeString(&Name, L ## #TypeName); \ 112 Key = *(PULONG)#TypeName; \ 113 if (sizeof(#TypeName) <= 4) Key |= ' ' << 24; \ 114 if (sizeof(#TypeName) <= 3) Key |= ' ' << 16; \ 115 if (sizeof(#TypeName) <= 2) Key |= ' ' << 8; \
|
H A D | ObType.c | 180 WCHAR TypeName[15]; in ObtCreateObjectTypes() member 190 Status = RtlStringCbPrintfW(Name.TypeName, sizeof Name.TypeName, L"MyObjectType%x", i); in ObtCreateObjectTypes() 192 RtlInitUnicodeString(&ObTypeName[i], Name.TypeName); in ObtCreateObjectTypes()
|
/reactos/base/applications/dxdiag/ |
H A D | input.c | 136 ZeroMemory(&TypeName, sizeof(TypeName)); in DirectInputEnumDevCb() 137 TypeName.diph.dwSize = sizeof(TypeName); in DirectInputEnumDevCb() 138 TypeName.diph.dwHeaderSize = sizeof(DIPROPHEADER); in DirectInputEnumDevCb() 139 TypeName.diph.dwHow = DIPH_DEVICE; in DirectInputEnumDevCb() 140 hResult = pDev->lpVtbl->GetProperty(pDev, DIPROP_GETPORTDISPLAYNAME, (LPDIPROPHEADER)&TypeName); in DirectInputEnumDevCb()
|
/reactos/modules/rosapps/applications/sysutils/utils/objdir/ |
H A D | objdir.c | 259 if (0 == wcscmp (L"SymbolicLink", pDirectoryEntry->TypeName.Buffer)) in ListDirectory() 271 RawUszAsz (pDirectoryEntry->TypeName.Buffer, TypeNameA), in ListDirectory() 280 RawUszAsz (pDirectoryEntry->TypeName.Buffer, TypeNameA), in ListDirectory() 289 RawUszAsz (pDirectoryEntry->TypeName.Buffer, TypeNameA), in ListDirectory() 308 while (0 != pDirectoryEntry->TypeName.Length) in ListDirectory() 310 if (0 == wcscmp (L"Directory", pDirectoryEntry->TypeName.Buffer)) in ListDirectory()
|
/reactos/modules/rostests/winetests/vbscript/ |
H A D | api.vbs | 1077 Call ok(TypeName(Empty) = "Empty", "TypeName(MyEmpty) = " & TypeName(Empty)) 1079 Call ok(TypeName(Null) = "Null", "TypeName(Null) = " & TypeName(Null)) 1081 Call ok(TypeName(CByte(255)) = "Byte", "TypeName(CByte(255)) = " & TypeName(CByte(255))) 1083 Call ok(TypeName(255) = "Integer", "TypeName(255) = " & TypeName(255)) 1084 Call ok(getVT(TypeName(255)) = "VT_BSTR", "getVT(TypeName(255)) = " & getVT(TypeName(255))) 1085 Call ok(TypeName(32768) = "Long", "TypeName(32768) = " & TypeName(32768)) 1087 Call ok(TypeName(CSng(0.5)) = "Single", "TypeName(CSng(0.5)) = " & TypeName(CSng(0.5))) 1089 Call ok(TypeName(-0.5) = "Double", "TypeName(-0.5) = " & TypeName(-0.5)) 1091 Call ok(TypeName(CCur(0.5)) = "Currency", "TypeName(CCur(0.5)) = " & TypeName(CCur(0.5))) 1093 Call ok(TypeName(CStr(0.5)) = "String", "TypeName(CStr(0.5)) = " & TypeName(CStr(0.5))) [all …]
|
/reactos/ntoskrnl/ob/ |
H A D | oblife.c | 1011 ObjectTypeInfo->TypeName.Buffer = InfoBuffer; in ObQueryTypeInfo() 1136 ObCreateObjectType(IN PUNICODE_STRING TypeName, in ObCreateObjectType() argument 1153 if (!(TypeName) || in ObCreateObjectType() 1154 !(TypeName->Length) || in ObCreateObjectType() 1155 (TypeName->Length % sizeof(WCHAR)) || in ObCreateObjectType() 1170 p = TypeName->Buffer; in ObCreateObjectType() 1171 i = TypeName->Length / sizeof(WCHAR); in ObCreateObjectType() 1189 TypeName, in ObCreateObjectType() 1213 RtlCopyUnicodeString(&ObjectName, TypeName); in ObCreateObjectType() 1317 else if ((TypeName->Length == 8) && !(wcscmp(TypeName->Buffer, L"File"))) in ObCreateObjectType() [all …]
|
H A D | obdir.c | 637 DirectoryInfo->TypeName.Length = ObjectHeader-> in NtQueryDirectoryObject() 639 DirectoryInfo->TypeName.MaximumLength = ObjectHeader-> in NtQueryDirectoryObject() 642 DirectoryInfo->TypeName.Buffer = ObjectHeader-> in NtQueryDirectoryObject() 694 DirectoryInfo->TypeName.Buffer, in NtQueryDirectoryObject() 695 DirectoryInfo->TypeName.Length); in NtQueryDirectoryObject() 698 DirectoryInfo->TypeName.Buffer = (PVOID)((ULONG_PTR)Buffer + in NtQueryDirectoryObject() 703 p = (PVOID)((ULONG_PTR)p + DirectoryInfo->TypeName.Length); in NtQueryDirectoryObject()
|
/reactos/dll/shellext/ntobjshex/ |
H A D | ntobjenum.cpp | 81 OBJECT_TYPE MapTypeNameToType(LPCWSTR TypeName, DWORD cbTypeName) in MapTypeNameToType() argument 83 if (!TypeName) in MapTypeNameToType() 89 if (!StrCmpNW(typeName, TypeName, cbTypeName / sizeof(WCHAR))) in MapTypeNameToType() 608 OBJECT_TYPE otype = MapTypeNameToType(info->TypeName.Buffer, info->TypeName.Length); in EnumerateNext() 618 if (info->TypeName.Buffer) in EnumerateNext() 620 entryBufferLength += info->TypeName.Length; in EnumerateNext() 655 if (info->TypeName.Buffer) in EnumerateNext() 657 typedata->typeNameLength = info->TypeName.Length; in EnumerateNext() 658 … StringCbCopyNW(typedata->typeName, remainingSpace, info->TypeName.Buffer, info->TypeName.Length); in EnumerateNext()
|
/reactos/dll/win32/rsaenh/ |
H A D | rsaenh.rgs | 55 val 'TypeName' = s 'RSA Full (Signature and Key Exchange)' 60 val 'TypeName' = s 'RSA SChannel' 65 val 'TypeName' = s 'RSA Full and AES'
|
/reactos/base/applications/network/nslookup/ |
H A D | utility.c | 819 USHORT TypeNametoTypeID( PCHAR TypeName ) in TypeNametoTypeID() argument 821 if( !strncmp( TypeName, TypeA, strlen( TypeA ) ) ) return TYPE_A; in TypeNametoTypeID() 822 if( !strncmp( TypeName, TypeNS, strlen( TypeNS ) ) ) return TYPE_NS; in TypeNametoTypeID() 823 if( !strncmp( TypeName, TypeCNAME, strlen( TypeCNAME ) ) ) return TYPE_CNAME; in TypeNametoTypeID() 824 if( !strncmp( TypeName, TypeSOA, strlen( TypeSOA ) ) ) return TYPE_SOA; in TypeNametoTypeID() 825 if( !strncmp( TypeName, TypeSRV, strlen( TypeSRV ) ) ) return TYPE_WKS; in TypeNametoTypeID() 826 if( !strncmp( TypeName, TypePTR, strlen( TypePTR ) ) ) return TYPE_PTR; in TypeNametoTypeID() 827 if( !strncmp( TypeName, TypeMX, strlen( TypeMX ) ) ) return TYPE_MX; in TypeNametoTypeID() 828 if( !strncmp( TypeName, TypeAny, strlen( TypeAny ) ) ) return TYPE_ANY; in TypeNametoTypeID()
|
H A D | nslookup.h | 114 USHORT TypeNametoTypeID( PCHAR TypeName );
|
/reactos/dll/win32/shell32/dialogs/ |
H A D | filetypes.cpp | 370 WCHAR TypeName[TYPENAME_CCHMAX]; member 1151 LPCWSTR TypeName, EDITTYPEFLAGS Etf) in EditTypeDlg_WriteClass() argument 1198 if (TypeName[0]) in EditTypeDlg_WriteClass() 1372 WCHAR TypeName[TYPENAME_CCHMAX]; in EditTypeDlg_ReadClass() local 1373 dwSize = sizeof(TypeName); in EditTypeDlg_ReadClass() 1376 TypeName[_countof(TypeName) - 1] = UNICODE_NULL; // Terminate in EditTypeDlg_ReadClass() 1390 WCHAR TypeName[TYPENAME_CCHMAX]; in EditTypeDlg_OnOK() local 1391 GetDlgItemTextW(hwndDlg, IDC_EDITTYPE_TEXT, TypeName, _countof(TypeName)); in EditTypeDlg_OnOK() 1392 StrTrimW(TypeName, g_pszSpace); in EditTypeDlg_OnOK() 1827 LPCWSTR TypeName = GetTypeName(pEntry, pG); in FileTypesDlg_OnItemChanging() local [all …]
|
/reactos/ntoskrnl/io/pnpmgr/ |
H A D | pnpmap.c | 19 PCWSTR TypeName; member 108 for (i = 0; DeviceList[i].TypeName; i++) in IopMapPeripheralId() 110 RtlInitUnicodeString(&CmpId, DeviceList[i].TypeName); in IopMapPeripheralId()
|
/reactos/sdk/include/ndk/ |
H A D | obtypes.h | 279 UNICODE_STRING TypeName; member 287 UNICODE_STRING TypeName; member
|
H A D | obfuncs.h | 75 _In_ PUNICODE_STRING TypeName,
|
H A D | extypes.h | 1049 UNICODE_STRING TypeName; member
|
/reactos/ntoskrnl/ex/ |
H A D | keyedevt.c | 51 UNICODE_STRING TypeName = RTL_CONSTANT_STRING(L"KeyedEvent"); in ExpInitializeKeyedEventImplementation() local 65 Status = ObCreateObjectType(&TypeName, in ExpInitializeKeyedEventImplementation()
|
/reactos/dll/win32/kernel32/client/ |
H A D | dosdev.c | 737 if (!wcscmp(DirInfo->TypeName.Buffer, L"SymbolicLink")) in QueryDosDeviceW() 889 if (!wcscmp(DirInfo->TypeName.Buffer, L"SymbolicLink")) in QueryDosDeviceW()
|
/reactos/dll/win32/fusion/ |
H A D | fusionpriv.h | 315 WORD TypeName; member
|
/reactos/modules/rostests/winetests/ntdll/ |
H A D | om.c | 1587 USHORT length = type->TypeName.MaximumLength; in test_query_object_types() 1588 trace( "Type %u: %s\n", i, wine_dbgstr_us(&type->TypeName) ); in test_query_object_types() 1592 … ok( type->TypeName.Length == sizeof(typeW) && !strncmpW(typeW, type->TypeName.Buffer, 4), in test_query_object_types() 1593 "Expected 'Type' as first type, got %s\n", wine_dbgstr_us(&type->TypeName) ); in test_query_object_types() 1595 if (type->TypeName.Length == sizeof(eventW) && !strncmpW(eventW, type->TypeName.Buffer, 5)) in test_query_object_types()
|
/reactos/sdk/include/psdk/ |
H A D | winternl.h | 454 UNICODE_STRING TypeName; member
|
H A D | d3d10effect.h | 63 const char *TypeName; member
|
/reactos/dll/win32/vbscript/ |
H A D | vbsglobal.idl | 600 VARIANT TypeName(VARIANT varname);
|
/reactos/ntoskrnl/se/ |
H A D | srm.c | 912 if (wcscmp(DirectoryInfo->TypeName.Buffer, L"SymbolicLink")) in SepCleanupLUIDDeviceMapDirectory()
|
/reactos/sdk/include/xdk/ |
H A D | ntifs.template.h | 1078 UNICODE_STRING TypeName; member
|