Home | History | Annotate | Download | only in unicode

Lines Matching refs:context

121   *  @param context user supplied value, obtained from from u_setMutexFunctions().
131 typedef void U_CALLCONV UMtxInitFn (const void *context, UMTX *mutex, UErrorCode* status);
138 * @param context user supplied value, obtained from from u_setMutexFunctions().
143 typedef void U_CALLCONV UMtxFn (const void *context, UMTX *mutex);
154 * @param context This pointer value will be saved, and then (later) passed as
166 u_setMutexFunctions(const void *context, UMtxInitFn *init, UMtxFn *destroy, UMtxFn *lock, UMtxFn *unlock,
172 * @param context user supplied value, obtained from from u_setAtomicIncDecFunctions().
178 typedef int32_t U_CALLCONV UMtxAtomicFn(const void *context, int32_t *p);
186 * @param context This pointer value will be saved, and then (later) passed as
196 u_setAtomicIncDecFunctions(const void *context, UMtxAtomicFn *inc, UMtxAtomicFn *dec,
203 * @param context user supplied value, obtained from from u_setMemoryFunctions().
209 typedef void *U_CALLCONV UMemAllocFn(const void *context, size_t size);
212 * @param context user supplied value, obtained from from u_setMemoryFunctions().
218 typedef void *U_CALLCONV UMemReallocFn(const void *context, void *mem, size_t size);
222 * @param context user supplied value, obtained from from u_setMemoryFunctions().
229 typedef void U_CALLCONV UMemFreeFn (const void *context, void *mem);
237 * @param context This pointer value will be saved, and then (later) passed as
248 u_setMemoryFunctions(const void *context, UMemAllocFn *a, UMemReallocFn *r, UMemFreeFn *f,