Searched refs:PERSIST_SAVE_HANDLE (Results 1 - 5 of 5) sorted by relevance
/base/startup/init/services/param/include/ |
H A D | param_persist.h | 32 typedef void *PERSIST_SAVE_HANDLE;
typedef 41 int (*batchSaveBegin)(PERSIST_SAVE_HANDLE *handle);
42 int (*batchSave)(PERSIST_SAVE_HANDLE handle, const char *name, const char *value);
43 void (*batchSaveEnd)(PERSIST_SAVE_HANDLE handle);
46 int (*batchSaveBegin)(PERSIST_SAVE_HANDLE *handle);
47 int (*batchSave)(PERSIST_SAVE_HANDLE handle[], const char *name, const char *value);
48 void (*batchSaveEnd)(PERSIST_SAVE_HANDLE handle[]);
|
/base/startup/init/services/param/liteos/ |
H A D | param_persistadp.c | 84 static int BatchSavePersistParamBegin(PERSIST_SAVE_HANDLE *handle)
in BatchSavePersistParamBegin() 95 *handle = (PERSIST_SAVE_HANDLE)fp;
in BatchSavePersistParamBegin() 99 static int BatchSavePersistParam(PERSIST_SAVE_HANDLE handle, const char *name, const char *value)
in BatchSavePersistParam() 107 static void BatchSavePersistParamEnd(PERSIST_SAVE_HANDLE handle)
in BatchSavePersistParamEnd()
|
H A D | param_hal.c | 208 static int BatchSavePersistParamBegin(PERSIST_SAVE_HANDLE *handle)
in BatchSavePersistParamBegin() 217 *handle = (PERSIST_SAVE_HANDLE)fd;
in BatchSavePersistParamBegin() 221 static int BatchSavePersistParam(PERSIST_SAVE_HANDLE handle, const char *name, const char *value)
in BatchSavePersistParam() 230 static void BatchSavePersistParamEnd(PERSIST_SAVE_HANDLE handle)
in BatchSavePersistParamEnd()
|
/base/startup/init/services/param/adapter/ |
H A D | param_persistadp.c | 229 static int BatchSavePersistParamBegin(PERSIST_SAVE_HANDLE *handle)
in BatchSavePersistParamBegin() 241 handle[0] = (PERSIST_SAVE_HANDLE)fp;
in BatchSavePersistParamBegin() 254 handle[i] = (PERSIST_SAVE_HANDLE)fp;
in BatchSavePersistParamBegin() 260 static int BatchSavePersistParam(PERSIST_SAVE_HANDLE handle[], const char *name, const char *value)
in BatchSavePersistParam() 273 static void BatchSavePersistParamEnd(PERSIST_SAVE_HANDLE handle[])
in BatchSavePersistParamEnd()
|
/base/startup/init/services/param/manager/ |
H A D | param_persist.c | 88 (PERSIST_SAVE_HANDLE)cookie, name, entry->data + entry->keyLength + 1);
in SavePersistParam() 102 PERSIST_SAVE_HANDLE handle;
in BatchSavePersistParam() 110 PERSIST_SAVE_HANDLE handle[PERSIST_HANDLE_MAX] = { NULL, NULL };
in BatchSavePersistParam()
|
Completed in 3 milliseconds