gril: Remove g_ril_request_oem_hook_raw

This commit is contained in:
Denis Kenzior 2015-12-03 10:12:59 -06:00
parent 4c2cd6fce6
commit a30ca51c59
2 changed files with 0 additions and 18 deletions

View File

@ -58,21 +58,6 @@
error->error = 0; \
} while (0)
void g_ril_request_oem_hook_raw(GRil *gril, const void *payload, size_t length,
struct parcel *rilp)
{
char *hex_dump = NULL;
parcel_init(rilp);
parcel_w_raw(rilp, payload, length);
if (payload != NULL)
hex_dump = encode_hex(payload, length, '\0');
g_ril_append_print_buf(gril, "(%s)", hex_dump ? hex_dump : "(null)");
g_free(hex_dump);
}
void g_ril_request_oem_hook_strings(GRil *gril, const char **strs, int num_str,
struct parcel *rilp)
{

View File

@ -34,9 +34,6 @@
extern "C" {
#endif
void g_ril_request_oem_hook_raw(GRil *gril, const void *payload, size_t length,
struct parcel *rilp);
void g_ril_request_oem_hook_strings(GRil *gril, const char **strs, int num_str,
struct parcel *rilp);