Home | History | Annotate | Download | only in unicode

Lines Matching refs:context

137   *  @param context user supplied value, obtained from from u_setMutexFunctions().
147 typedef void U_CALLCONV UMtxInitFn (const void *context, UMTX *mutex, UErrorCode* status);
154 * @param context user supplied value, obtained from from u_setMutexFunctions().
159 typedef void U_CALLCONV UMtxFn (const void *context, UMTX *mutex);
170 * @param context This pointer value will be saved, and then (later) passed as
182 u_setMutexFunctions(const void *context, UMtxInitFn *init, UMtxFn *destroy, UMtxFn *lock, UMtxFn *unlock,
188 * @param context user supplied value, obtained from from u_setAtomicIncDecFunctions().
194 typedef int32_t U_CALLCONV UMtxAtomicFn(const void *context, int32_t *p);
202 * @param context This pointer value will be saved, and then (later) passed as
212 u_setAtomicIncDecFunctions(const void *context, UMtxAtomicFn *inc, UMtxAtomicFn *dec,
219 * @param context user supplied value, obtained from from u_setMemoryFunctions().
225 typedef void *U_CALLCONV UMemAllocFn(const void *context, size_t size);
228 * @param context user supplied value, obtained from from u_setMemoryFunctions().
234 typedef void *U_CALLCONV UMemReallocFn(const void *context, void *mem, size_t size);
238 * @param context user supplied value, obtained from from u_setMemoryFunctions().
245 typedef void U_CALLCONV UMemFreeFn (const void *context, void *mem);
253 * @param context This pointer value will be saved, and then (later) passed as
264 u_setMemoryFunctions(const void *context, UMemAllocFn *a, UMemReallocFn *r, UMemFreeFn *f,