Lines Matching refs:array

855 	    Bool *array = malloc (nItems * sizeof (Bool));  in readListValue()  local
856 if (!array) in readListValue()
860 array[i] = in readListValue()
862 list = ccsGetValueListFromBoolArray (array, nItems, setting); in readListValue()
863 free (array); in readListValue()
868 int *array = malloc (nItems * sizeof (int)); in readListValue() local
869 if (!array) in readListValue()
873 array[i] = gconf_value_get_int (valueList->data); in readListValue()
874 list = ccsGetValueListFromIntArray (array, nItems, setting); in readListValue()
875 free (array); in readListValue()
880 float *array = malloc (nItems * sizeof (float)); in readListValue() local
881 if (!array) in readListValue()
885 array[i] = gconf_value_get_float (valueList->data); in readListValue()
886 list = ccsGetValueListFromFloatArray (array, nItems, setting); in readListValue()
887 free (array); in readListValue()
893 char **array = malloc (nItems * sizeof (char*)); in readListValue() local
894 if (!array) in readListValue()
898 array[i] = strdup (gconf_value_get_string (valueList->data)); in readListValue()
899 list = ccsGetValueListFromStringArray (array, nItems, setting); in readListValue()
901 if (array[i]) in readListValue()
902 free (array[i]); in readListValue()
903 free (array); in readListValue()
908 CCSSettingColorValue *array; in readListValue() local
909 array = malloc (nItems * sizeof (CCSSettingColorValue)); in readListValue()
910 if (!array) in readListValue()
915 memset (&array[i], 0, sizeof (CCSSettingColorValue)); in readListValue()
917 &array[i]); in readListValue()
919 list = ccsGetValueListFromColorArray (array, nItems, setting); in readListValue()
920 free (array); in readListValue()