Home | History | Annotate | Download | only in base

Lines Matching refs:storage_

94     storage_ = new char[32];
97 storage_[0] = 0;
106 memcpy(storage_ + length_, data, length);
108 storage_[length_] = '\0';
114 password->CopyTo(storage_ + length_, true);
123 return storage_;
134 char * old_storage = storage_;
142 storage_ = new char[capacity_];
145 memcpy(storage_, old_storage, length_);
158 storage_[0] = 0;
160 storage_[i] = storage_[i - 1];
163 delete[] storage_;
166 char * storage_;