gril: Remove g_ril_request_oem_hook_strings

This commit is contained in:
Denis Kenzior 2015-12-03 10:18:09 -06:00
parent 5f3e3523ef
commit 2b805dfafc
2 changed files with 0 additions and 25 deletions

View File

@ -58,28 +58,6 @@
error->error = 0; \
} while (0)
void g_ril_request_oem_hook_strings(GRil *gril, const char **strs, int num_str,
struct parcel *rilp)
{
int i;
parcel_init(rilp);
parcel_w_int32(rilp, num_str);
g_ril_append_print_buf(gril, "(");
for (i = 0; i < num_str; ++i) {
parcel_w_string(rilp, strs[i]);
if (i == num_str - 1)
g_ril_append_print_buf(gril, "%s%s)",
print_buf, strs[i]);
else
g_ril_append_print_buf(gril, "%s%s, ",
print_buf, strs[i]);
}
}
void g_ril_request_set_initial_attach_apn(GRil *gril, const char *apn,
int proto,
const char *user,

View File

@ -34,9 +34,6 @@
extern "C" {
#endif
void g_ril_request_oem_hook_strings(GRil *gril, const char **strs, int num_str,
struct parcel *rilp);
void g_ril_request_set_initial_attach_apn(GRil *gril, const char *apn,
int proto,
const char *user,