OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:str_array
(Results
1 - 10
of
10
) sorted by null
/external/dbus/dbus/
dbus-memory.h
54
void dbus_free_string_array (char **
str_array
);
dbus-memory.c
664
* @param
str_array
the array to be freed
667
dbus_free_string_array (char **
str_array
)
669
if (
str_array
)
674
while (
str_array
[i])
676
dbus_free (
str_array
[i]);
680
dbus_free (
str_array
);
dbus-message.c
837
char **
str_array
;
local
855
str_array
= dbus_new0 (char*, n_elements + 1);
856
if (
str_array
== NULL)
872
str_array
[i] = _dbus_strdup (s);
873
if (
str_array
[i] == NULL)
875
dbus_free_string_array (
str_array
);
888
_dbus_assert (
str_array
[i] == NULL);
890
*str_array_p =
str_array
;
[
all
...]
/external/bluetooth/glib/glib/
gstrfuncs.h
226
* g_strjoinv() concatenates all of
str_array
's strings, sliding in an
239
gchar **
str_array
) G_GNUC_MALLOC;
240
void g_strfreev (gchar **
str_array
);
241
gchar** g_strdupv (gchar **
str_array
) G_GNUC_MALLOC;
242
guint g_strv_length (gchar **
str_array
);
gstrfuncs.c
2403
gchar **
str_array
, *s;
local
[
all
...]
gfileutils.c
1347
gchar **
str_array
)
1360
if (
str_array
)
1361
next_element =
str_array
[i++];
[
all
...]
/external/bluetooth/bluez/src/
dbus-common.c
81
const char ***
str_array
= val;
local
86
&((*
str_array
)[i]));
/frameworks/base/core/jni/
android_server_BluetoothEventLoop.cpp
865
jobjectArray
str_array
= NULL;
local
869
str_array
=
872
if (
str_array
!= NULL) {
876
str_array
);
921
jobjectArray
str_array
= parse_adapter_property_change(env, msg);
local
944
jobjectArray
str_array
= parse_remote_device_property_change(env, msg);
local
965
jobjectArray
str_array
=
local
981
jobjectArray
str_array
=
local
1068
jobjectArray
str_array
=
local
[
all
...]
android_server_BluetoothService.cpp
731
jobjectArray
str_array
= NULL;
local
733
str_array
= parse_remote_device_properties(env, &iter);
736
return (jobjectArray) env->PopLocalFrame(
str_array
);
765
jobjectArray
str_array
= NULL;
local
767
str_array
= parse_adapter_properties(env, &iter);
770
return (jobjectArray) env->PopLocalFrame(
str_array
);
1540
jobjectArray
str_array
= NULL;
local
1574
jobjectArray
str_array
= NULL;
local
[
all
...]
android_server_BluetoothA2dpService.cpp
255
jobjectArray
str_array
=
local
263
str_array
);
Completed in 627 milliseconds