Searched refs:pCursor (Results 1 - 25 of 95) sorted by relevance

1234

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-cursor.cpp130 RTDECL(int) RTAsn1CursorSetInfoV(PRTASN1CURSOR pCursor, int rc, const char *pszMsg, va_list va) argument
132 PRTERRINFO pErrInfo = pCursor->pPrimary->pErrInfo;
161 while (pCursor)
163 if (pCursor->pszErrorTag)
165 size_t cchErrorTag = strlen(pCursor->pszErrorTag);
169 memcpy(pszBuf, pCursor->pszErrorTag, cchErrorTag);
175 pCursor = pCursor->pUp;
184 RTDECL(int) RTAsn1CursorSetInfo(PRTASN1CURSOR pCursor, int rc, const char *pszMsg, ...) argument
188 rc = RTAsn1CursorSetInfoV(pCursor, r
194 RTAsn1CursorCheckEnd(PRTASN1CURSOR pCursor) argument
203 RTAsn1CursorInitAllocation(PRTASN1CURSOR pCursor, PRTASN1ALLOCATION pAllocation) argument
213 RTAsn1CursorReadHdr(PRTASN1CURSOR pCursor, PRTASN1CORE pAsn1Core, const char *pszErrorTag) argument
326 RTAsn1CursorMatchTagClassFlagsEx(PRTASN1CURSOR pCursor, PRTASN1CORE pAsn1Core, uint32_t uTag, uint32_t fClass, bool fString, uint32_t fFlags, const char *pszErrorTag, const char *pszWhat) argument
367 rtAsn1CursorGetXxxxCursor(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t uTag, uint8_t fClass, PRTASN1CORE pAsn1Core, PRTASN1CURSOR pRetCursor, const char *pszErrorTag, const char *pszWhat) argument
399 RTAsn1CursorGetSequenceCursor(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1SEQUENCECORE pSeqCore, PRTASN1CURSOR pSeqCursor, const char *pszErrorTag) argument
407 RTAsn1CursorGetSetCursor(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1SETCORE pSetCore, PRTASN1CURSOR pSetCursor, const char *pszErrorTag) argument
415 RTAsn1CursorGetContextTagNCursor(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t uExpectedTag, PRTASN1CONTEXTTAG pCtxTag, PRTASN1CURSOR pCtxTagCursor, const char *pszErrorTag) argument
423 RTAsn1CursorPeek(PRTASN1CURSOR pCursor, PRTASN1CORE pAsn1Core) argument
439 RTAsn1CursorIsNextEx(PRTASN1CURSOR pCursor, uint32_t uTag, uint8_t fClass) argument
452 RTAsn1CursorGetCore(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1CORE pAsn1Core, const char *pszErrorTag) argument
458 RTAsn1CursorGetNull(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1NULL pNull, const char *pszErrorTag) argument
464 RTAsn1CursorGetInteger(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1INTEGER pInteger, const char *pszErrorTag) argument
470 RTAsn1CursorGetBoolean(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1BOOLEAN pBoolean, const char *pszErrorTag) argument
476 RTAsn1CursorGetObjId(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1OBJID pObjId, const char *pszErrorTag) argument
482 RTAsn1CursorGetTime(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1TIME pTime, const char *pszErrorTag) argument
488 RTAsn1CursorGetBitStringEx(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t cMaxBits, PRTASN1BITSTRING pBitString, const char *pszErrorTag) argument
495 RTAsn1CursorGetBitString(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1BITSTRING pBitString, const char *pszErrorTag) argument
501 RTAsn1CursorGetOctetString(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1OCTETSTRING pOctetString, const char *pszErrorTag) argument
508 RTAsn1CursorGetString(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1STRING pString, const char *pszErrorTag) argument
514 RTAsn1CursorGetIa5String(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1STRING pString, const char *pszErrorTag) argument
520 RTAsn1CursorGetUtf8String(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1STRING pString, const char *pszErrorTag) argument
526 RTAsn1CursorGetBmpString(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1STRING pString, const char *pszErrorTag) argument
532 RTAsn1CursorGetDynType(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1DYNTYPE pDynType, const char *pszErrorTag) argument
[all...]
H A Dasn1-ut-bitstring-decode.cpp40 RTDECL(int) RTAsn1BitString_DecodeAsn1Ex(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t cMaxBits, PRTASN1BITSTRING pThis, argument
47 RTAsn1CursorInitAllocation(pCursor, &pThis->EncapsulatedAllocation);
49 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
52 rc = RTAsn1CursorMatchTagClassFlagsString(pCursor, &pThis->Asn1Core, ASN1_TAG_BIT_STRING,
71 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb);
76 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BITSTRING_ENCODING,
85 if ( !(pCursor->fFlags & (RTASN1CURSOR_FLAGS_DER | RTASN1CURSOR_FLAGS_CER))
89 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb);
94 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BITSTRING_ENCODING,
99 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BITSTRING_ENCODIN
118 RTAsn1BitString_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1BITSTRING pThis, const char *pszErrorTag) argument
[all...]
H A Dasn1-ut-string-decode.cpp41 RTDECL(int) RTAsn1String_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1STRING pThis, const char *pszErrorTag) argument
46 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
69 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CURSOR_TAG_MISMATCH,
83 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb);
86 RTAsn1CursorInitAllocation(pCursor, &pThis->Allocation);
97 if (pCursor->fFlags & RTASN1CURSOR_FLAGS_DER)
98 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CURSOR_ILLEGAL_CONSTRUCTED_STRING,
101 else if (pCursor->fFlags & RTASN1CURSOR_FLAGS_CER)
106 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CURSOR_ILLEGAL_CONSTRUCTED_STRING,
113 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CONSTRUCTED_STRING_NOT_IMP
138 rtAsn1XxxString_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, uint8_t uTag, PRTASN1STRING pThis, const char *pszErrorTag, const char *pszWhat) argument
[all...]
H A Dasn1-ut-dyntype-decode.cpp40 RTDECL(int) RTAsn1DynType_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1DYNTYPE pDynType, const char *pszErrorTag) argument
45 uint32_t cbSavedLeft = pCursor->cbLeft;
46 uint8_t const *pbSavedCur = pCursor->pbCur;
48 int rc = RTAsn1CursorReadHdr(pCursor, &pDynType->u.Core, pszErrorTag);
80 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 SEQUENCE shall be constructed.");
83 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 SET shall be constructed.");
113 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_TAG_NOT_IMPL,
123 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 BOOLEAN shall be primitive.");
126 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 BOOLEAN shall be primitive.");
129 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TA
[all...]
H A Dasn1-ut-boolean-decode.cpp40 RTDECL(int) RTAsn1Boolean_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1BOOLEAN pThis, const char *pszErrorTag) argument
43 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
46 rc = RTAsn1CursorMatchTagClassFlags(pCursor, &pThis->Asn1Core, ASN1_TAG_BOOLEAN,
52 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb);
59 || !(pCursor->fFlags & (RTASN1CURSOR_FLAGS_DER | RTASN1CURSOR_FLAGS_CER)) )
62 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BOOLEAN_ENCODING,
67 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BOOLEAN_ENCODING, "%s: Invalid boolean length, exepcted 1: %#x",
H A Dasn1-ut-octetstring-decode.cpp39 RTDECL(int) RTAsn1OctetString_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1OCTETSTRING pThis, argument
43 RTAsn1CursorInitAllocation(pCursor, &pThis->EncapsulatedAllocation);
45 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
48 rc = RTAsn1CursorMatchTagClassFlagsString(pCursor, &pThis->Asn1Core, ASN1_TAG_OCTET_STRING,
56 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb);
61 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CONSTRUCTED_STRING_NOT_IMPL,
65 rc = RTAsn1CursorSetInfo(pCursor, rc, "%s: Not OCTET STRING: fClass=%#x / uTag=%#x",
H A Dasn1-ut-core-decode.cpp37 RTDECL(int) RTAsn1Core_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1CORE pThis, const char *pszErrorTag) argument
39 int rc = RTAsn1CursorReadHdr(pCursor, pThis, pszErrorTag);
42 RTAsn1CursorSkip(pCursor, pThis->cb);
H A Dasn1-ut-null-decode.cpp39 RTDECL(int) RTAsn1Null_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1NULL pThis, const char *pszErrorTag) argument
41 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
44 rc = RTAsn1CursorMatchTagClassFlags(pCursor, &pThis->Asn1Core, ASN1_TAG_NULL,
55 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_NULL_ENCODING,
H A Dasn1-ut-time-decode.cpp46 * @param pCursor The cursor to use when reporting an error.
51 static int rtAsn1Time_NormalizeTime(PRTASN1CURSOR pCursor, PRTASN1TIME pThis, const char *pszType, const char *pszErrorTag) argument
71 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_TIME_NORMALIZE_MISMATCH,
76 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_TIME_NORMALIZE_ERROR,
81 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_TIME_BAD_NORMALIZE_INPUT,
93 * @param pCursor The cursor to use when reporting an error.
97 static int rtAsn1Time_ConvertUTCTime(PRTASN1CURSOR pCursor, PRTASN1TIME pThis, const char *pszErrorTag) argument
145 rc = rtAsn1Time_NormalizeTime(pCursor, pThis, "UTCTime", pszErrorTag);
150 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_UTC_TIME_ENCODING, "%s: Bad UTCTime encoding: '%.*s'",
154 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_UTC_TIME_ENCODIN
172 rtAsn1Time_ConvertGeneralizedTimeFraction(PRTASN1CURSOR pCursor, const char *pchFraction, uint32_t cchFraction, PRTASN1TIME pThis, const char *pszErrorTag) argument
235 rtAsn1Time_ConvertGeneralizedTime(PRTASN1CURSOR pCursor, PRTASN1TIME pThis, const char *pszErrorTag) argument
304 RTAsn1Time_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1TIME pThis, const char *pszErrorTag) argument
341 RTAsn1UtcTime_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1TIME pThis, const char *pszErrorTag) argument
362 RTAsn1GeneralizedTime_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1TIME pThis, const char *pszErrorTag) argument
[all...]
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmoddwarf.cpp596 uint32_t uForm, PRTDWARFCURSOR pCursor);
1027 PRTDWARFCURSOR pCursor, PCRTDWARFABBREV pAbbrev, bool fInitDie);
1529 * @param pCursor The cursor.
1532 static uint8_t rtDwarfCursor_GetU8(PRTDWARFCURSOR pCursor, uint8_t uErrValue) argument
1534 if (pCursor->cbUnitLeft < 1)
1536 pCursor->rc = VERR_DWARF_UNEXPECTED_END;
1540 uint8_t u8 = pCursor->pb[0];
1541 pCursor->pb += 1;
1542 pCursor->cbUnitLeft -= 1;
1543 pCursor
1556 rtDwarfCursor_GetU16(PRTDWARFCURSOR pCursor, uint16_t uErrValue) argument
1585 rtDwarfCursor_GetU32(PRTDWARFCURSOR pCursor, uint32_t uErrValue) argument
1614 rtDwarfCursor_GetU64(PRTDWARFCURSOR pCursor, uint64_t uErrValue) argument
1644 rtDwarfCursor_GetULeb128(PRTDWARFCURSOR pCursor, uint64_t uErrValue) argument
1708 rtDwarfCursor_GetSLeb128(PRTDWARFCURSOR pCursor, int64_t sErrValue) argument
1777 rtDwarfCursor_GetULeb128AsU32(PRTDWARFCURSOR pCursor, uint32_t uErrValue) argument
1797 rtDwarfCursor_GetSLeb128AsS32(PRTDWARFCURSOR pCursor, int32_t sErrValue) argument
1815 rtDwarfCursor_SkipLeb128(PRTDWARFCURSOR pCursor) argument
1848 rtDwarfCursor_SkipBytes(PRTDWARFCURSOR pCursor, uint64_t offSkip) argument
1872 rtDwarfCursor_GetSZ(PRTDWARFCURSOR pCursor, const char *pszErrValue) argument
1899 rtDwarfCursor_GetVarSizedU(PRTDWARFCURSOR pCursor, size_t cbValue, uint64_t uErrValue) argument
1952 rtDwarfCursor_GetUHalf(PRTDWARFCURSOR pCursor, uint16_t uErrValue) argument
1966 rtDwarfCursor_GetUByte(PRTDWARFCURSOR pCursor, uint8_t uErrValue) argument
1980 rtDwarfCursor_GetSByte(PRTDWARFCURSOR pCursor, int8_t iErrValue) argument
1994 rtDwarfCursor_GetUOff(PRTDWARFCURSOR pCursor, uint64_t uErrValue) argument
2010 rtDwarfCursor_GetNativeUOff(PRTDWARFCURSOR pCursor, uint64_t uErrValue) argument
2032 rtDwarfCursor_GetInitalLength(PRTDWARFCURSOR pCursor) argument
2067 rtDwarfCursor_CalcSectOffsetU32(PRTDWARFCURSOR pCursor) argument
2090 rtDwarfCursor_CalcPos(PRTDWARFCURSOR pCursor, size_t offRelative) argument
2110 rtDwarfCursor_AdvanceToPos(PRTDWARFCURSOR pCursor, uint8_t const *pbNewPos) argument
2143 rtDwarfCursor_IsAtEndOfUnit(PRTDWARFCURSOR pCursor) argument
2155 rtDwarfCursor_SkipUnit(PRTDWARFCURSOR pCursor) argument
2172 rtDwarfCursor_IsAtEnd(PRTDWARFCURSOR pCursor) argument
2186 rtDwarfCursor_Init(PRTDWARFCURSOR pCursor, PRTDBGMODDWARF pThis, krtDbgModDwarfSect enmSect) argument
2218 rtDwarfCursor_InitWithOffset(PRTDWARFCURSOR pCursor, PRTDBGMODDWARF pThis, krtDbgModDwarfSect enmSect, uint32_t offSect) argument
2251 rtDwarfCursor_InitForBlock(PRTDWARFCURSOR pCursor, PRTDWARFCURSOR pParent, uint32_t cbBlock) argument
2281 rtDwarfCursor_Delete(PRTDWARFCURSOR pCursor, int rcOther) argument
2426 rtDwarfLine_RunProgram(PRTDWARFLINESTATE pLnState, PRTDWARFCURSOR pCursor) argument
2650 rtDwarfLine_ReadFileNames(PRTDWARFLINESTATE pLnState, PRTDWARFCURSOR pCursor) argument
2681 rtDwarfLine_ReadIncludePaths(PRTDWARFLINESTATE pLnState, PRTDWARFCURSOR pCursor) argument
2714 rtDwarfLine_ExplodeUnit(PRTDBGMODDWARF pThis, PRTDWARFCURSOR pCursor) argument
3056 rtDwarfDecodeHlp_GetStrp(PRTDBGMODDWARF pThis, PRTDWARFCURSOR pCursor, const char *pszErrValue) argument
3085 rtDwarfDecode_Address(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3115 rtDwarfDecode_Bool(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3150 rtDwarfDecode_LowHighPc(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3209 rtDwarfDecode_Ranges(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3262 rtDwarfDecode_Reference(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3327 rtDwarfDecode_SectOff(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3375 rtDwarfDecode_String(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3403 rtDwarfDecode_UnsignedInt(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
3476 rtDwarfLoc_Init(PRTDWARFLOCST pLoc, PRTDWARFCURSOR pCursor, uint32_t uForm) argument
3691 rtDwarfDecode_SegmentLoc(PRTDWARFDIE pDie, uint8_t *pbMember, PCRTDWARFATTRDESC pDesc, uint32_t uForm, PRTDWARFCURSOR pCursor) argument
4060 rtDwarfInfo_SkipForm(PRTDWARFCURSOR pCursor, uint32_t uForm) argument
4133 rtDwarfInfo_SkipDie(PRTDWARFCURSOR pCursor, PRTDWARFCURSOR pAbbrevCursor) argument
4165 rtDwarfInfo_ParseDie(PRTDBGMODDWARF pThis, PRTDWARFDIE pDie, PCRTDWARFDIEDESC pDieDesc, PRTDWARFCURSOR pCursor, PCRTDWARFABBREV pAbbrev, bool fInitDie) argument
4237 rtDwarfInfo_LoadUnit(PRTDBGMODDWARF pThis, PRTDWARFCURSOR pCursor, bool fKeepDies) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dmisprite.h38 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
39 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dmisprite.h38 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
39 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dmisprite.h40 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
43 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dmisprite.h40 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
43 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dmisprite.h40 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
43 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dmisprite.h40 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
43 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dmisprite.h38 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
39 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dmisprite.h38 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
39 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dmisprite.h38 extern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
39 extern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
41 CursorPtr pCursor, int x, int y,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Ddmxcursor.h64 extern void dmxBECreateCursor(ScreenPtr pScreen, CursorPtr pCursor);
65 extern Bool dmxBEFreeCursor(ScreenPtr pScreen, CursorPtr pCursor);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Ddmxcursor.h63 extern void dmxBECreateCursor(ScreenPtr pScreen, CursorPtr pCursor);
64 extern Bool dmxBEFreeCursor(ScreenPtr pScreen, CursorPtr pCursor);
H A Dmipointrst.h38 CursorPtr pCursor; /* current cursor */ member in struct:__anon7814
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Ddmxcursor.h64 extern void dmxBECreateCursor(ScreenPtr pScreen, CursorPtr pCursor);
65 extern Bool dmxBEFreeCursor(ScreenPtr pScreen, CursorPtr pCursor);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Ddmxcursor.h64 extern void dmxBECreateCursor(ScreenPtr pScreen, CursorPtr pCursor);
65 extern Bool dmxBEFreeCursor(ScreenPtr pScreen, CursorPtr pCursor);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dmipointrst.h38 CursorPtr pCursor; /* current cursor */ member in struct:__anon8167

Completed in 1454 milliseconds

1234