Lines Matching defs:objName

100 		mapping->objName = NULL;
274 if (!out->objName && in->objName) {
275 if (!strchr(in->objName, SPACE_CHAR)) {
276 /* objName has no space- a single map dbIdMapping */
277 out->objName = s_strndup(in->objName,
278 strlen(in->objName));
279 if (!out->objName)
284 if (!out->objName && out->dbId) {
285 out->objName = s_strndup(out->dbId, strlen(out->dbId));
286 if (!out->objName)
439 char *objName = NULL;
463 if (t->objName != NULL) {
464 objName = strdup(t->objName);
465 if (objName == NULL) {
468 "%s: Cannot allocate memory for objName",
472 objs = (char *)strtok_r(objName, " ", &lasts);
481 t->objName = s_strndup(t->dbId,
483 if (!t->objName) {
486 "t->objName", myself);
496 if (tg == NULL || tg->objName == NULL) {
497 /* If not found, use dbId for objName */
498 t->objName = s_strndup(t->dbId,
500 if (t->objName == NULL) {
502 "%s: Cannot allocate memory for t->objName",
508 tobj = s_strndup(tg->objName,
509 strlen(tg->objName));
512 "%s: Cannot allocate memory for t->objName",
531 if (t->objName == NULL)
532 t->objName = dupalias;
534 len = strlen(t->objName)
542 t->objName,
546 free(t->objName);
547 t->objName = tmp;
557 (objName = s_strdup(t->objName))
575 if (t->objName)
576 free(t->objName);
580 objs = (char *)strtok_r(objName, " ",
592 if (objName)
593 free(objName);
599 * If objName is "map1 map2" then do the second pass.
601 * Also skip it if t->objName is null.
603 if (objs && strncasecmp(objs, t->objName,
604 strlen(t->objName))) {
613 if (objName)
614 free(objName);
633 if (objName)
634 free(objName);
648 if (objName)
649 free(objName);
672 if (objName)
673 free(objName);
683 if (objName) {
684 free(objName);
685 objName = NULL;
721 * all structures will have a non-null objPath as well as a objName
770 if (!t->objName && t->dbId) {
771 t->objName = s_strndup(t->dbId, strlen(t->dbId));
772 if (!t->objName) {
1113 if (t->objName)
1264 if (tmp_map->dbId == NULL || tmp_map->objName == NULL) {
1299 if (getfullmapname(&tmp_map->objName, DomainLabel))
1301 append_dot(&tmp_map->objName);