HomeSort by relevance Sort by last modified time
    Searched refs:function_name (Results 26 - 50 of 221) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium/crypto/
cssm_init.h 33 void LogCSSMError(const char *function_name, CSSM_RETURN err);
  /external/chromium_org/crypto/
cssm_init.h 33 CRYPTO_EXPORT void LogCSSMError(const char *function_name, CSSM_RETURN err);
  /external/chromium_org/net/spdy/
spdy_session_test_util.h 22 // executed that were posted by the function named by |function_name|, located
28 const std::string& function_name);
  /external/chromium_org/base/win/
iat_patch_function.cc 18 const char* function_name; member in struct:base::win::__anon6424::InterceptFunctionInformation
98 (0 == lstrcmpiA(name, intercept_information->function_name))) {
132 // function_name Name of the API to be intercepted
142 const char* function_name, void* new_function,
146 (NULL == function_name) || (NULL == new_function)) {
160 function_name,
224 const char* function_name,
239 function_name,
  /external/chromium_org/chrome/renderer/extensions/
api_activity_logger.h 25 const std::string& function_name,
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.h 184 // function_name.
190 // @param function_name The name of the function you wish to patch.
203 LPCSTR function_name,
206 SIDESTEP_ASSERT(module_name && function_name);
207 if (!module_name || !function_name) {
218 FARPROC existing_function = ::GetProcAddress(module, function_name);
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.h 184 // function_name.
190 // @param function_name The name of the function you wish to patch.
203 LPCSTR function_name,
206 SIDESTEP_ASSERT(module_name && function_name);
207 if (!module_name || !function_name) {
218 FARPROC existing_function = ::GetProcAddress(module, function_name);
  /external/chromium/base/
tracked.h 44 Location(const char* function_name, const char* file_name, int line_number);
63 const char* function_name() const { return function_name_; } function in class:tracked_objects::Location
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
nacl_io_demo.c 207 * @param[in] function_name The function name to look up.
208 * @return The handler function mapped to |function_name|. */
209 static HandleFunc GetFunctionByName(const char* function_name) {
212 if (strcmp(map_iter->name, function_name) == 0) {
224 char* function_name; local
231 num_params = ParseMessage(message, &function_name, &params[0], MAX_PARAMS);
233 function = GetFunctionByName(function_name);
238 PrintfToVar("Error: Unknown function \"%s\"", function_name));
250 function_name,
256 "Error: Function \"%s\" returned error %d.", function_name, result)
    [all...]
  /external/chromium_org/sandbox/win/src/
eat_resolver.cc 63 const char* function_name,
73 eat_entry_ = pe.GetExportEntry(function_name);
resolver_32.cc 82 const char* function_name,
85 return ResolverThunk::ResolveInterceptor(module, function_name, casted);
service_resolver.h 35 const char* function_name,
40 const char* function_name,
  /external/valgrind/main/VEX/priv/
guest_ppc_defs.h 64 IRExpr* guest_ppc32_spechelper ( HChar* function_name,
70 IRExpr* guest_ppc64_spechelper ( HChar* function_name,
  /external/chromium/chrome/browser/extensions/
execute_code_in_tab_function.cc 165 std::string function_name = name(); local
166 if (function_name == TabsInsertCSSFunction::function_name()) {
168 } else if (function_name != TabsExecuteScriptFunction::function_name()) {
  /external/chromium_org/chrome/test/base/
web_ui_browsertest.h 59 bool RunJavascriptFunction(const std::string& function_name);
60 bool RunJavascriptFunction(const std::string& function_name,
62 bool RunJavascriptFunction(const std::string& function_name,
65 bool RunJavascriptFunction(const std::string& function_name,
156 // Loads all libraries added with AddLibrary(), and calls |function_name| with
158 // |function_name| with a test helper function, which waits for completion,
159 // logging an error message on failure, otherwise |function_name| is called
163 bool RunJavascriptUsingHandler(const std::string& function_name,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
reflectionhandler.py 86 function_name = function_or_file_name.replace(".", "_")
87 if not hasattr(self, function_name):
88 self.send_error(404, "Unknown function %s" % function_name)
90 if function_name[0] == "_":
93 function = getattr(self, function_name)
  /external/chromium_org/tools/valgrind/asan/third_party/
asan_symbolize.py 82 function_name = self.pipe.stdout.readline().rstrip()
83 if not function_name:
87 if (not function_name.startswith('??') and
90 result.append('%s in %s %s' % (addr, function_name,
129 function_name = self.pipe.stdout.readline().rstrip()
132 function_name = ''
135 return ['%s in %s %s' % (addr, function_name, file_name)]
175 function_name = match.group(1)
176 function_name = re.sub('\(.*?\)', '', function_name)
    [all...]
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 84 function_name = self.pipe.stdout.readline().rstrip()
85 if not function_name:
89 if (not function_name.startswith('??') and
92 result.append('%s in %s %s' % (addr, function_name,
131 function_name = self.pipe.stdout.readline().rstrip()
134 function_name = ''
137 return ['%s in %s %s' % (addr, function_name, file_name)]
200 function_name = match.group(1)
201 function_name = re.sub('\(.*?\)', '', function_name)
    [all...]
symbolize.py 88 function_name = p.stdout.readline().rstrip()
90 if function_name in ['??', '']:
93 frames.append((function_name, file_name))
  /external/chromium/chrome/browser/printing/
print_dialog_cloud_internal.h 34 virtual void CallJavascriptFunction(const std::wstring& function_name);
35 virtual void CallJavascriptFunction(const std::wstring& function_name,
37 virtual void CallJavascriptFunction(const std::wstring& function_name,
  /external/chromium_org/remoting/protocol/
authentication_method.cc 135 std::string function_name = as_string.substr(0, separator);
136 if (function_name == "plain") {
138 } else if (function_name == "hmac") {
  /external/chromium_org/ui/gl/
generate_bindings.py 1461 function_name = names[0] variable
1530 function_name = names[0] variable
1553 function_name = names[0] variable
    [all...]
  /external/chromium/chrome/browser/sync/glue/
data_type_manager.h 64 location.function_name(),
  /external/chromium_org/chrome/browser/extensions/
extension_function_registry.h 50 factories_[T::function_name()] =
  /external/chromium_org/chrome/browser/printing/
print_dialog_cloud_internal.h 41 virtual void CallJavascriptFunction(const std::wstring& function_name);
42 virtual void CallJavascriptFunction(const std::wstring& function_name,
44 virtual void CallJavascriptFunction(const std::wstring& function_name,
47 virtual void CallJavascriptFunction(const std::wstring& function_name,

Completed in 1206 milliseconds

12 3 4 5 6 7 8 9