Method

FridaSessioncompile_script

Declaration

void
frida_session_compile_script (
  FridaSession* self,
  const gchar* source,
  FridaScriptOptions* options,
  GCancellable* cancellable,
  GAsyncReadyCallback _callback_,
  void* _callback__target
)

Description [src]

Compiles JavaScript source to a bytecode blob, which can later be loaded with frida_session_create_script_from_bytes().

Parameters

source

Type: const gchar*

The script’s JavaScript source code.

The data is owned by the caller of the method.
The value is a NUL terminated UTF-8 string.
options

Type: FridaScriptOptions

Script options affecting compilation, or null.

The argument can be NULL.
The data is owned by the caller of the method.
cancellable

Type: GCancellable

No description available.

The argument can be NULL.
The data is owned by the caller of the method.
_callback_

Type: GAsyncReadyCallback

No description available.

The argument can be NULL.
_callback__target

Type: void*

No description available.

The argument can be NULL.
The data is owned by the caller of the method.