HomeSort by relevance Sort by last modified time
    Searched refs:destr_fn_info (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.cc 129 static DestrFnClosure destr_fn_info; // initted to all NULL/0. variable
132 if (destr_fn_info.destr_fn) {
133 void *ptr = TlsGetValue(destr_fn_info.key_for_destr_fn_arg);
137 TlsSetValue(destr_fn_info.key_for_destr_fn_arg, NULL);
139 (*destr_fn_info.destr_fn)(ptr);
186 assert(destr_fn_info.destr_fn == NULL);
187 destr_fn_info.destr_fn = destr_fn;
188 destr_fn_info.key_for_destr_fn_arg = key;
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.cc 129 static DestrFnClosure destr_fn_info; // initted to all NULL/0. variable
132 if (destr_fn_info.destr_fn) {
133 void *ptr = TlsGetValue(destr_fn_info.key_for_destr_fn_arg);
137 TlsSetValue(destr_fn_info.key_for_destr_fn_arg, NULL);
139 (*destr_fn_info.destr_fn)(ptr);
187 assert(destr_fn_info.destr_fn == NULL);
188 destr_fn_info.destr_fn = destr_fn;
189 destr_fn_info.key_for_destr_fn_arg = key;

Completed in 71 milliseconds