Lines Matching refs:stringLength
850 long stringLength; in CopyCStrToExistingHandle() local
870 stringLength = CStrLength(theCString) + 1; in CopyCStrToExistingHandle()
872 SetHandleSize(theHandle,stringLength); in CopyCStrToExistingHandle()
874 if (GetHandleSize(theHandle) < stringLength) in CopyCStrToExistingHandle()
880 ::BlockMove(theCString,*theHandle,stringLength); in CopyCStrToExistingHandle()
895 long stringLength; in CopyCStrToNewHandle() local
910 stringLength = CStrLength(theCString) + 1; in CopyCStrToNewHandle()
912 *theHandle = NewHandle(stringLength); in CopyCStrToNewHandle()
920 ::BlockMove(theCString,**theHandle,stringLength); in CopyCStrToNewHandle()
933 long stringLength; in CopyPStrToNewHandle() local
948 stringLength = PStrLength(thePString) + 1; in CopyPStrToNewHandle()
950 *theHandle = NewHandle(stringLength); in CopyPStrToNewHandle()
958 if (stringLength > 1) in CopyPStrToNewHandle()
960 BlockMove(thePString + 1,**theHandle,stringLength - 1); in CopyPStrToNewHandle()
963 (**theHandle)[stringLength - 1] = 0; in CopyPStrToNewHandle()
993 long handleMaxLength,handleCurrentLength,stringLength,byteCount; in AppendCStrToHandle() local
1029 stringLength = CStrLength(theCString); in AppendCStrToHandle()
1031 byteCount = handleCurrentLength + stringLength + 1; in AppendCStrToHandle()
1035 SetHandleSize(theHandle,handleCurrentLength + stringLength + 1); in AppendCStrToHandle()
1056 BlockMove(theCString,*theHandle + handleCurrentLength,stringLength + 1); in AppendCStrToHandle()
1061 *currentLength += stringLength; in AppendCStrToHandle()