Lines Matching refs:longValue
385 jlong longValue = (longValues ? longValues[0] : 0); in getObjectPropertyValue() local
391 formatDateTime(longValue, date, sizeof(date)); in getObjectPropertyValue()
398 snprintf(date, sizeof(date), "%04" PRId64 "0101T000000", longValue); in getObjectPropertyValue()
405 packet.putInt8(longValue); in getObjectPropertyValue()
408 packet.putUInt8(longValue); in getObjectPropertyValue()
411 packet.putInt16(longValue); in getObjectPropertyValue()
414 packet.putUInt16(longValue); in getObjectPropertyValue()
417 packet.putInt32(longValue); in getObjectPropertyValue()
420 packet.putUInt32(longValue); in getObjectPropertyValue()
423 packet.putInt64(longValue); in getObjectPropertyValue()
426 packet.putUInt64(longValue); in getObjectPropertyValue()
429 packet.putInt128(longValue); in getObjectPropertyValue()
432 packet.putInt128(longValue); in getObjectPropertyValue()
472 static bool readLongValue(int type, MtpDataPacket& packet, jlong& longValue) { in readLongValue() argument
477 longValue = temp; in readLongValue()
483 longValue = temp; in readLongValue()
489 longValue = temp; in readLongValue()
495 longValue = temp; in readLongValue()
501 longValue = temp; in readLongValue()
507 longValue = temp; in readLongValue()
513 longValue = temp; in readLongValue()
519 longValue = temp; in readLongValue()
538 jlong longValue = 0; in setObjectPropertyValue() local
547 if (!readLongValue(type, packet, longValue)) goto fail; in setObjectPropertyValue()
551 (jint)handle, (jint)property, longValue, stringValue); in setObjectPropertyValue()
582 jlong longValue = longValues[0]; in getDevicePropertyValue() local
587 packet.putInt8(longValue); in getDevicePropertyValue()
590 packet.putUInt8(longValue); in getDevicePropertyValue()
593 packet.putInt16(longValue); in getDevicePropertyValue()
596 packet.putUInt16(longValue); in getDevicePropertyValue()
599 packet.putInt32(longValue); in getDevicePropertyValue()
602 packet.putUInt32(longValue); in getDevicePropertyValue()
605 packet.putInt64(longValue); in getDevicePropertyValue()
608 packet.putUInt64(longValue); in getDevicePropertyValue()
611 packet.putInt128(longValue); in getDevicePropertyValue()
614 packet.putInt128(longValue); in getDevicePropertyValue()
641 jlong longValue = 0; in setDevicePropertyValue() local
650 if (!readLongValue(type, packet, longValue)) goto fail; in setDevicePropertyValue()
654 (jint)property, longValue, stringValue); in setDevicePropertyValue()