• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:PtrDataObj

93     PtrDataObj      = NULL;
538 fSqlType, precision, scale, (UCHAR*) colDefs[i].PtrDataObj,
547 fSqlType, precision, scale, (UCHAR*) colDefs[i].PtrDataObj,
582 if (SQLBindCol(cursor, (UWORD)(i+1), colDefs[i].SqlCtype, (UCHAR*) colDefs[i].PtrDataObj,
694 if (colDefs[i].PtrDataObj == pParmID)
1326 colValue.Printf(wxT("'%s'"), GetDb()->EscapeSqlChars((wxChar *)colDefs[colNumber].PtrDataObj).c_str());
1330 colValue.Printf(wxT("%hi"), *((SWORD *) colDefs[colNumber].PtrDataObj));
1333 colValue.Printf(wxT("%hu"), *((UWORD *) colDefs[colNumber].PtrDataObj));
1337 colValue.Printf(wxT("%li"), *((SDWORD *) colDefs[colNumber].PtrDataObj));
1340 colValue.Printf(wxT("%lu"), *((UDWORD *) colDefs[colNumber].PtrDataObj));
1343 colValue.Printf(wxT("%.6f"), *((SFLOAT *) colDefs[colNumber].PtrDataObj));
1346 colValue.Printf(wxT("%.6f"), *((SDOUBLE *) colDefs[colNumber].PtrDataObj));
1971 if (colDefs[i].PtrDataObj == pParmID)
2139 return(((UCHAR FAR *) colDefs[colNumber].PtrDataObj)[0] == 0);
2141 return(( *((SWORD *) colDefs[colNumber].PtrDataObj)) == 0);
2143 return(( *((UWORD*) colDefs[colNumber].PtrDataObj)) == 0);
2145 return(( *((SDWORD *) colDefs[colNumber].PtrDataObj)) == 0);
2147 return(( *((UDWORD *) colDefs[colNumber].PtrDataObj)) == 0);
2149 return(( *((SFLOAT *) colDefs[colNumber].PtrDataObj)) == 0);
2151 return((*((SDOUBLE *) colDefs[colNumber].PtrDataObj)) == 0);
2154 pDt = (TIMESTAMP_STRUCT *) colDefs[colNumber].PtrDataObj;
2226 ((UCHAR FAR *) colDefs[colNumber].PtrDataObj)[0] = 0;
2229 *((SWORD *) colDefs[colNumber].PtrDataObj) = 0;
2232 *((UWORD*) colDefs[colNumber].PtrDataObj) = 0;
2236 *((SDWORD *) colDefs[colNumber].PtrDataObj) = 0;
2239 *((UDWORD *) colDefs[colNumber].PtrDataObj) = 0;
2242 *((SFLOAT *) colDefs[colNumber].PtrDataObj) = 0.0f;
2245 *((SDOUBLE *) colDefs[colNumber].PtrDataObj) = 0.0f;
2249 pDt = (TIMESTAMP_STRUCT *) colDefs[colNumber].PtrDataObj;
2260 pDtd = (DATE_STRUCT *) colDefs[colNumber].PtrDataObj;
2267 pDtt = (TIME_STRUCT *) colDefs[colNumber].PtrDataObj;
2341 colDefs[index].PtrDataObj = pData;
2383 pColDataPtrs[index].PtrDataObj = new wxChar[pColInfs[index].bufferSize+(1*sizeof(wxChar))];
2388 pColDataPtrs[index].PtrDataObj = new wxChar[pColInfs[index].bufferSize+(1*sizeof(wxChar))];
2396 pColDataPtrs[index].PtrDataObj = new long;
2402 pColDataPtrs[index].PtrDataObj = new short;
2411 pColDataPtrs[index].PtrDataObj = new float;
2417 pColDataPtrs[index].PtrDataObj = new double;
2423 pColDataPtrs[index].PtrDataObj = new TIMESTAMP_STRUCT;
2429 pColDataPtrs[index].PtrDataObj = /*BLOB ADDITION NEEDED*/NULL;
2434 if (pColDataPtrs[index].PtrDataObj != NULL)
2435 SetColDefs (index,pColInfs[index].colName,pColInfs[index].dbDataType, pColDataPtrs[index].PtrDataObj, pColDataPtrs[index].SqlCtype, pColDataPtrs[index].SzDataObj);
2442 // to know the maximum size to create the PtrDataObj to be.
2760 val = (wxChar *)(colDefs[colNumber].PtrDataObj);
2764 val = *(long *)(colDefs[colNumber].PtrDataObj);
2768 val = (long int )(*(short *)(colDefs[colNumber].PtrDataObj));
2771 val = (long)(*(unsigned long *)(colDefs[colNumber].PtrDataObj));
2774 val = (long)(*(wxChar *)(colDefs[colNumber].PtrDataObj));
2777 val = (long)(*(wxChar *)(colDefs[colNumber].PtrDataObj));
2780 val = (long)(*(UWORD *)(colDefs[colNumber].PtrDataObj));
2783 val = (DATE_STRUCT *)(colDefs[colNumber].PtrDataObj);
2786 val = (TIME_STRUCT *)(colDefs[colNumber].PtrDataObj);
2789 val = (TIMESTAMP_STRUCT *)(colDefs[colNumber].PtrDataObj);
2792 val = *(double *)(colDefs[colNumber].PtrDataObj);
2832 csstrncpyt((wxChar *)(colDefs[colNumber].PtrDataObj),
2838 *(long *)(colDefs[colNumber].PtrDataObj) = val;
2842 *(short *)(colDefs[colNumber].PtrDataObj) = (short)val.GetLong();
2845 *(unsigned long *)(colDefs[colNumber].PtrDataObj) = val.GetLong();
2848 *(wxChar *)(colDefs[colNumber].PtrDataObj) = val.GetChar();
2851 *(wxChar *)(colDefs[colNumber].PtrDataObj) = val.GetChar();
2854 *(unsigned short *)(colDefs[colNumber].PtrDataObj) = (unsigned short)val.GetLong();
2860 (DATE_STRUCT *)colDefs[colNumber].PtrDataObj;
2870 (TIME_STRUCT *)colDefs[colNumber].PtrDataObj;
2880 (TIMESTAMP_STRUCT *)colDefs[colNumber].PtrDataObj;
2891 *(double *)(colDefs[colNumber].PtrDataObj) = val;
2913 memcpy(blkptr,colDefs[i].PtrDataObj, colDefs[i].SzDataObj);
2939 memcpy(colDefs[i].PtrDataObj, blkptr, colDefs[i].SzDataObj);