Searched defs:newdata (Results 1 - 2 of 2) sorted by relevance

/hardware/intel/common/libmix/mix_common/src/
H A Dmixparams.c196 * @newdata: pointer to new object
200 * Either @newdata and the value pointed to by @olddata may be NULL.
202 void mix_params_replace (MixParams **olddata, MixParams *newdata) argument
210 if (olddata_val == newdata)
213 if (newdata)
214 mix_params_ref (newdata);
216 while (!g_atomic_pointer_compare_and_exchange ((gpointer *) olddata, olddata_val, newdata))
/hardware/intel/common/libmix/mix_video/src/
H A Dmixdisplay.c474 * @newdata: pointer to new object
478 * Either @newdata and the value pointed to by @olddata may be NULL.
481 mix_display_replace (MixDisplay ** olddata, MixDisplay * newdata) argument
489 if (olddata_val == newdata)
492 if (newdata)
493 mix_display_ref (newdata);
496 ((gpointer *) olddata, olddata_val, newdata))

Completed in 77 milliseconds