Searched refs:shutdown_functions (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc346 vector<void (*)()>* shutdown_functions = NULL; member in namespace:google::protobuf::internal
351 shutdown_functions = new vector<void (*)()>;
362 shutdown_functions->push_back(func);
375 if (internal::shutdown_functions == NULL) return;
377 for (int i = 0; i < internal::shutdown_functions->size(); i++) {
378 internal::shutdown_functions->at(i)();
380 delete internal::shutdown_functions; member in class:google::protobuf::internal
381 internal::shutdown_functions = NULL; member in class:google::protobuf::internal
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc324 vector<void (*)()>* shutdown_functions = NULL; member in namespace:google::protobuf::internal
329 shutdown_functions = new vector<void (*)()>;
340 shutdown_functions->push_back(func);
353 if (internal::shutdown_functions == NULL) return;
355 for (int i = 0; i < internal::shutdown_functions->size(); i++) {
356 internal::shutdown_functions->at(i)();
358 delete internal::shutdown_functions; member in class:google::protobuf::internal
359 internal::shutdown_functions = NULL; member in class:google::protobuf::internal

Completed in 65 milliseconds