/* * Auto-generated by Frida. Please modify to match the signature of VerifyPhoneNumberRequest.writeToParcel. * * For full API reference, see: https://frida.re/docs/javascript-api/ */ { /** * Called synchronously when about to call VerifyPhoneNumberRequest.writeToParcel. * * @this {object} - The Java class or instance. * @param {function} log - Call this function with a string to be presented to the user. * @param {array} args - Java method arguments. * @param {object} state - Object allowing you to keep state across function calls. */ onEnter(log, args, state) { log(`VerifyPhoneNumberRequest.writeToParcel(${args.map(JSON.stringify).join(', ')})`); }, /** * Called synchronously when about to return from VerifyPhoneNumberRequest.writeToParcel. * * See onEnter for details. * * @this {object} - The Java class or instance. * @param {function} log - Call this function with a string to be presented to the user. * @param {NativePointer} retval - Return value. * @param {object} state - Object allowing you to keep state across function calls. */ onLeave(log, retval, state) { if (retval !== undefined) { log(`<= ${JSON.stringify(retval)}`); } } }