/development/host/windows/usb/api/ |
adb_api_private_defines.h | 44 AdbInstanceEnumEntry(const wchar_t* dev_name, GUID cls_id, DWORD flgs) {
60 void Set(const wchar_t* dev_name, GUID cls_id, DWORD flgs) {
91 GUID class_id() const {
102 GUID class_id_;
|
adb_interface_enum.cpp | 35 bool AdbInterfaceEnumObject::InitializeEnum(GUID class_id,
|
adb_helper_routines.cpp | 84 GUID class_id,
145 bool EnumerateDeviceInterfaces(GUID class_id,
|
/external/quake/quake/src/QW/dxsdk/sdk/inc/ |
d3dcaps.h | 229 #define D3DFDS_GUID 0x00000002L /* Match guid */
253 GUID guid;
member in struct:_D3DFINDDEVICESEARCH 260 GUID guid; /* guid which matched */
member in struct:_D3DFINDDEVICERESULT
|
dsetup.h | 16 #define GUID void
|
dsound.h | 25 // Direct Sound Component GUID {47D4D946-62E8-11cf-93BC-444553540000}
104 typedef BOOL (FAR PASCAL * LPDSENUMCALLBACKW)(GUID FAR *, LPWSTR, LPWSTR, LPVOID);
105 typedef BOOL (FAR PASCAL * LPDSENUMCALLBACKA)(GUID FAR *, LPSTR, LPSTR, LPVOID);
107 extern HRESULT WINAPI DirectSoundCreate(GUID FAR * lpGUID, LPDIRECTSOUND * ppDS, IUnknown FAR *pUnkOuter );
140 STDMETHOD( Initialize)(THIS_ GUID FAR * ) PURE;
|
/external/quake/quake/src/WinQuake/dxsdk/SDK/INC/ |
D3DCAPS.H | 229 #define D3DFDS_GUID 0x00000002L /* Match guid */
253 GUID guid;
member in struct:_D3DFINDDEVICESEARCH 260 GUID guid; /* guid which matched */
member in struct:_D3DFINDDEVICERESULT
|
DSETUP.H | 16 #define GUID void
|
DSOUND.H | 25 // Direct Sound Component GUID {47D4D946-62E8-11cf-93BC-444553540000}
104 typedef BOOL (FAR PASCAL * LPDSENUMCALLBACKW)(GUID FAR *, LPWSTR, LPWSTR, LPVOID);
105 typedef BOOL (FAR PASCAL * LPDSENUMCALLBACKA)(GUID FAR *, LPSTR, LPSTR, LPVOID);
107 extern HRESULT WINAPI DirectSoundCreate(GUID FAR * lpGUID, LPDIRECTSOUND * ppDS, IUnknown FAR *pUnkOuter );
140 STDMETHOD( Initialize)(THIS_ GUID FAR * ) PURE;
|
/external/webkit/WebCore/platform/graphics/wince/ |
FontCustomPlatformData.cpp | 61 Vector<char> fontUuid(sizeof(GUID)); 64 for (int i = 0; i < sizeof(GUID) / sizeof(int) ; ++i)
|
/external/wpa_supplicant/ |
driver_ndis.h | 34 char ifname[100]; /* GUID: {7EE3EFE5-C165-472F-986D-F6FBEDFE8C8D} */
|
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
driver_ndis.h | 34 char ifname[100]; /* GUID: {7EE3EFE5-C165-472F-986D-F6FBEDFE8C8D} */
|
/external/dbus/dbus/ |
dbus-server-protected.h | 62 DBusGUID guid; /**< Globally unique ID of server */ member in struct:DBusServer 64 DBusString guid_hex; /**< Hex-encoded version of GUID */
|
dbus-auth.h | 44 DBusAuth* _dbus_auth_server_new (const DBusString *guid);
|
/external/dbus/doc/ |
TODO | 55 - if the GUID is obtained only during authentication, not in the address, 125 "display ID" property on screen 0, with a GUID, and keying activation by 126 said GUID. Otherwise you get all kinds of unrobust 129 do per-display by simply including GUID in the service name.
|
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
SDL_dx5video.h | 55 extern HRESULT (WINAPI *DDrawCreate)( GUID FAR *lpGUID, LPDIRECTDRAW FAR *lplpDD, IUnknown FAR *pUnkOuter );
|
/external/sonivox/arm-fm-22k/host_src/ |
eas_build.h | 8 * build. The buildGUIDStr is a GUID created during
|
/external/sonivox/arm-hybrid-22k/host_src/ |
eas_build.h | 8 * build. The buildGUIDStr is a GUID created during
|
/external/sonivox/arm-wt-22k/host_src/ |
eas_build.h | 8 * build. The buildGUIDStr is a GUID created during
|
/external/webkit/WebKit/win/Interfaces/ |
AccessibleComparable.idl | 33 cpp_quote("extern const GUID __declspec(selectany) SID_AccessibleComparable = { 0x62b8cb5f, 0xfb7a, 0x4faf, 0x81, 0xe8, 0x52, 0xb6, 0x5f, 0x12, 0x8b, 0x31 };")
|
/external/webkit/WebCore/storage/ |
Database.cpp | 105 static inline void updateGuidVersionMap(int guid, String newVersion) 117 guidToVersionMap().set(guid, newVersion.isEmpty() ? String() : newVersion.threadsafeCopy()); 468 int guid = stringIdentifierToGUIDMap.get(stringID); local 469 if (!guid) { 471 guid = currentNewGUID++; 472 stringIdentifierToGUIDMap.set(stringID, guid); 475 return guid; 518 LOG(StorageAPI, "Current cached version for guid %i is %s", m_guid, currentVersion.ascii().data()); 520 LOG(StorageAPI, "No cached version for guid %i", m_guid);
|
DatabaseTracker.cpp | 117 if (!m_database.executeCommand("CREATE TABLE Databases (guid INTEGER PRIMARY KEY AUTOINCREMENT, origin TEXT, name TEXT, displayName TEXT, estimatedSize INTEGER, path TEXT);")) { 173 SQLiteStatement statement(m_database, "SELECT guid FROM Databases WHERE origin=? AND name=?;"); 354 int64_t guid = 0; local 359 SQLiteStatement statement(m_database, "SELECT guid FROM Databases WHERE origin=? AND name=?"); 368 guid = statement.getColumnInt64(0); 371 if (guid == 0) { 378 LOG_ERROR("Could not retrieve guid for database %s in origin %s from the tracker database - it is invalid to set database details on a database that doesn't already exist in the tracker", 384 SQLiteStatement updateStatement(m_database, "UPDATE Databases SET displayName=?, estimatedSize=? WHERE guid=?"); 390 updateStatement.bindInt64(3, guid);
|
/external/webkit/WebKit/win/ |
WebDataSource.h | 36 extern const GUID IID_WebDataSource;
|
/hardware/ti/omap3/dspbridge/inc/ |
dbapi.h | 33 *! to HNODE; changed GUID to UUID; added "Detail" sections
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
dbapi.h | 33 *! to HNODE; changed GUID to UUID; added "Detail" sections
|