| 339 | } |
| 340 | |
| 341 | jint nativePushInternedString(jlong ptr, jlong propPtr) { |
| 342 | auto* marshaller = unwrap(nullptr, ptr); |
| 343 | if (marshaller == nullptr) { |
| 344 | return 0; |
| 345 | } |
| 346 | |
| 347 | auto convertedStr = ValdiAndroid::unwrapInternedString(propPtr); |
| 348 | return static_cast<jint>(marshaller->push(Valdi::Value(convertedStr))); |
| 349 | } |
| 350 | |
| 351 | jint nativePushFunction(JNIEnv* env, |
| 352 |
no test coverage detected