Home | History | Annotate | Download | only in fen

Lines Matching full:token

188     gchar* token;
199 if ((token = strtok_r (str, G_DIR_SEPARATOR_S, &lasts)) != NULL) {
201 FN_W ("%s %s + %s\n", __func__, NODE_NAME(parent), token);
202 child = children_find (parent, token);
212 } while ((token = strtok_r (NULL, G_DIR_SEPARATOR_S, &lasts)) != NULL);
219 if (token == NULL && child) {
245 gchar* token;
258 if ((token = strtok_r (str, G_DIR_SEPARATOR_S, &lasts)) != NULL) {
260 FN_W ("%s %s + %s\n", __func__, NODE_NAME(parent), token);
261 child = node_new (parent, token);
268 } while ((token = strtok_r (NULL, G_DIR_SEPARATOR_S, &lasts)) != NULL);
271 if (token == NULL) {