Lines Matching refs:functionId
215 sal_Int32 functionId = 0; in sendRequest() local
229 functionId = atd->pInterface->pMapMemberIndexToFunctionIndex[ in sendRequest()
232 ++functionId; in sendRequest()
246 functionId = mtd->pInterface->pMapMemberIndexToFunctionIndex[ in sendRequest()
249 functionId != SPECIAL_FUNCTION_ID_RELEASE; in sendRequest()
256 OSL_ASSERT(functionId >= 0); in sendRequest()
257 if (functionId > SAL_MAX_UINT16) { in sendRequest()
267 if (newType || newOid || newTid || forceSynchronous || functionId > 0x3FFF) in sendRequest()
273 (newTid ? 0x08 : 0) | (functionId > 0xFF ? 0x04 : 0) | in sendRequest()
280 if (functionId <= 0xFF) { in sendRequest()
281 Marshal::write8(&buf, static_cast< sal_uInt8 >(functionId)); in sendRequest()
283 Marshal::write16(&buf, static_cast< sal_uInt16 >(functionId)); in sendRequest()
294 } else if (functionId <= 0x3F) { // <= 6 bit function ID in sendRequest()
295 Marshal::write8(&buf, static_cast< sal_uInt8 >(functionId)); in sendRequest()
299 &buf, static_cast< sal_uInt8 >(0x40 | (functionId >> 8))); in sendRequest()
301 Marshal::write8(&buf, functionId & 0xFF); in sendRequest()