Lines Matching refs:zKey
1074 static int jsonLabelCompare(JsonNode *pNode, const char *zKey, u32 nKey){ in jsonLabelCompare() argument
1078 return strncmp(pNode->u.zJContent, zKey, nKey)==0; in jsonLabelCompare()
1081 return strncmp(pNode->u.zJContent+1, zKey, nKey)==0; in jsonLabelCompare()
1105 const char *zKey; in jsonLookupStep() local
1113 zKey = zPath + 1; in jsonLookupStep()
1124 zKey = zPath; in jsonLookupStep()
1135 if( jsonLabelCompare(pRoot+j, zKey, nKey) ){ in jsonLookupStep()
1151 iLabel = jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); in jsonLookupStep()
1639 const char *zKey; in jsonMergePatch() local
1644 zKey = pPatch[i].u.zJContent; in jsonMergePatch()
1650 if( pTarget[j].n==nKey && strncmp(pTarget[j].u.zJContent,zKey,nKey)==0 ){ in jsonMergePatch()
1675 jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); in jsonMergePatch()