Lines Matching refs:item
46 for (cJSON *item = root_->child; item; item = item->next) {
47 auto handler = fileListHandles_.find(item->string);
49 cout << "Warning: unsupport " << item->string << endl;
52 if (handler->second(item) != RESTOOL_SUCCESS) {
117 for (cJSON *item = node->child; item; item = item->next) {
118 if (!cJSON_IsString(item)) {
121 if (callback(c, item->valuestring) != RESTOOL_SUCCESS) {