Searched refs:dictSize (Results 1 - 2 of 2) sorted by relevance
/base/startup/init/interfaces/innerkits/include/ |
H A D | init_utils.h | 166 void *OH_StrDictGet(void **strDict, int dictSize, const char *target, int ignoreCase);
185 void *OH_ExtendableStrDictGet(void **strDict, int dictSize, const char *target, int ignoreCase, void **extendStrDict);
|
/base/startup/init/services/utils/ |
H A D | init_utils.c | 782 void *OH_ExtendableStrDictGet(void **strDict, int dictSize, const char *target, int ignoreCase, void **extendStrDict)
in OH_ExtendableStrDictGet() argument 788 if ((strDict == NULL) || dictSize < 0 || ((size_t)dictSize < sizeof(const char *)) ||
in OH_ExtendableStrDictGet() 804 pos = pos + dictSize;
in OH_ExtendableStrDictGet() 815 pos = pos + dictSize;
in OH_ExtendableStrDictGet() 820 void *OH_StrDictGet(void **strDict, int dictSize, const char *target, int ignoreCase)
in OH_StrDictGet() argument 822 return OH_ExtendableStrDictGet(strDict, dictSize, target, ignoreCase, NULL);
in OH_StrDictGet()
|
Completed in 2 milliseconds