Lines Matching defs:pszValue

685         char       *pszValue;
686 int rc = scmSvnRunAndGetOutput(pState, apszArgs, true, &pszValue);
689 RTStrFree(pszValue);
723 char *pszValue;
724 int rc = scmSvnRunAndGetOutput(NULL, apszArgs, true, &pszValue);
727 RTStrFree(pszValue);
760 const char *pszValue = pState->paSvnPropChanges[i].pszValue;
761 if (!pszValue)
764 return RTStrDupEx(ppszValue, pszValue);
864 char *pszValue;
865 rc = RTStrAllocEx(&pszValue, cchValue + 1);
868 rc = ScmStreamRead(&Stream, pszValue, cchValue);
870 *ppszValue = pszValue;
872 RTStrFree(pszValue);
899 char *pszValue;
900 rc = scmSvnRunAndGetOutput(pState, apszArgs, false, &pszValue);
903 if (pszValue && *pszValue)
907 *ppszValue = pszValue;
908 pszValue = NULL;
913 RTStrFree(pszValue);
932 * @param pszValue The value. NULL means deleting it.
934 int ScmSvnSetProperty(PSCMRWSTATE pState, const char *pszName, const char *pszValue)
943 if (!pszValue)
945 RTStrFree(pState->paSvnPropChanges[i].pszValue);
946 pState->paSvnPropChanges[i].pszValue = NULL;
951 int rc = RTStrDupEx(&pszCopy, pszValue);
954 pState->paSvnPropChanges[i].pszValue = pszCopy;
972 pState->paSvnPropChanges[i].pszValue = pszValue ? RTStrDup(pszValue) : NULL;
974 && (pState->paSvnPropChanges[i].pszValue || !pszValue) )
980 RTStrFree(pState->paSvnPropChanges[i].pszValue);
981 pState->paSvnPropChanges[i].pszValue = NULL;
1014 const char *pszValue = pState->paSvnPropChanges[i].pszValue;
1015 if (pszValue)
1016 ScmVerbose(pState, 0, "svn propset '%s' '%s' %s\n", pszName, pszValue, pState->pszFilename);
1043 apszArgv[1] = pState->paSvnPropChanges[i].pszValue ? "propset" : "propdel";
1046 if (pState->paSvnPropChanges[i].pszValue)
1047 apszArgv[iArg++] = pState->paSvnPropChanges[i].pszValue;