MCPcopy Create free account
hub / github.com/Kitware/VTK / SetData

Method SetData

IO/ODBC/vtkODBCQuery.cxx:85–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83 ~vtkODBCBoundParameter() { delete[] this->Data; }
84
85 void SetData(const char* data, unsigned long size)
86 {
87 delete[] this->Data;
88 this->BufferSize = size;
89 this->DataLength = size;
90 this->Data = new char[size];
91 memcpy(this->Data, data, size);
92 }
93
94 char* Data; // Buffer holding actual data
95 unsigned long DataLength;

Callers 15

RequestDataMethod · 0.45
ReadGeometryMethod · 0.45
ApplyMorphingToPolyDataFunction · 0.45
ReadGeometryMethod · 0.45
InsertCellsToGridMethod · 0.45
MakeInternalMeshMethod · 0.45
MakeBoundaryMeshMethod · 0.45
MoveInternalMeshMethod · 0.45
MoveBoundaryMeshMethod · 0.45
MakeLagrangianMeshMethod · 0.45
RequestDataMethod · 0.45

Calls

no outgoing calls

Tested by 1

TestSOAPointsFunction · 0.36