HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 351 - 375 of 3477) sorted by null

<<11121314151617181920>>

  /device/lge/hammerhead/camera/QCamera2/HAL3/
QCamera3Factory.cpp 57 camera_info info; local
66 getCameraInfo(i, &info);
113 * @info : ptr to camera info struct
119 int QCamera3Factory::get_camera_info(int camera_id, struct camera_info *info)
121 return gQCamera3Factory->getCameraInfo(camera_id, info);
146 * @hw_device : ptr to struct storing camera hardware device info
180 * @info : ptr to camera info struct
186 int QCamera3Factory::getCameraInfo(int camera_id, struct camera_info *info)
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
Log.java 30 * <li>info</li>
105 * <p> Is info logging currently enabled? </p>
109 * when the log level is more than info. </p>
111 * @return true if info is enabled in the underlying logger.
178 * <p> Log a message with info log level. </p>
182 public void info(Object message); method in interface:Log
186 * <p> Log an error with info log level. </p>
191 public void info(Object message, Throwable t); method in interface:Log
  /external/apache-http/src/org/apache/commons/logging/impl/
NoOpLog.java 48 public void info(Object message) { } method in class:NoOpLog
50 public void info(Object message, Throwable t) { } method in class:NoOpLog
86 * Info is never enabled.
  /external/bluetooth/bluedroid/bta/include/
bta_fs_ci.h 77 UINT8 info; member in struct:__anon5377
195 ** info - the stored BTA specific information (like last active operation).
205 UINT32 timeout, UINT32 offset, UINT8 ssn, UINT8 info,
  /external/chromium_org/base/files/
file_enumerator_posix.cc 135 FileInfo info; local
136 info.filename_ = FilePath(dent->d_name);
141 ret = lstat(full_name.value().c_str(), &info.stat_);
143 ret = stat(full_name.value().c_str(), &info.stat_);
151 memset(&info.stat_, 0, sizeof(info.stat_));
153 entries->push_back(info);
  /external/chromium_org/base/test/
test_process_killer_win.cc 64 PROCESS_BASIC_INFORMATION info = { 0 }; local
69 &info,
70 sizeof(info),
75 BYTE* peb = reinterpret_cast<BYTE*>(info.PebBaseAddress);
  /external/chromium_org/base/win/
windows_version.cc 25 static OSInfo* info; local
26 if (!info) {
29 reinterpret_cast<PVOID*>(&info), new_info, NULL)) {
33 return info;
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_quota_helper_impl.cc 174 QuotaInfo* info = &itr->second; local
176 if (info->temporary_usage <= 0 &&
177 info->persistent_usage <= 0 &&
178 info->syncable_usage <= 0)
181 info->host = itr->first;
182 result.push_back(*info);
  /external/chromium_org/chrome/browser/chromeos/events/
xinput_hierarchy_changed_event_listener.cc 27 XIHierarchyInfo* info = &event->info[i]; local
28 if ((info->flags & XISlaveAdded) && (info->use == XIFloatingSlave)) {
31 DeviceAdded(info->deviceid));
33 } else if (info->flags & XISlaveRemoved) {
34 // Can't check info->use here; it appears to always be 0.
37 DeviceRemoved(info->deviceid));
  /external/chromium_org/chrome/browser/content_settings/
content_settings_internal_extension_provider.cc 144 const UnloadedExtensionInfo& info = local
146 if (extensions::PluginInfo::HasPlugins(info.extension))
147 SetContentSettingForExtension(info.extension, CONTENT_SETTING_DEFAULT);
  /external/chromium_org/chrome/browser/diagnostics/
diagnostics_controller_unittest.cc 93 const DiagnosticsModel::TestInfo& info(results.GetTest(i));
94 EXPECT_EQ(DiagnosticsModel::TEST_OK, info.GetResult()) << "Test: "
95 << info.GetName();
108 const DiagnosticsModel::TestInfo& info(results.GetTest(i));
109 EXPECT_EQ(DiagnosticsModel::RECOVERY_OK, info.GetResult())
110 << "Test: " << info.GetName();
126 const DiagnosticsModel::TestInfo* info = NULL; local
128 results.GetTestInfo(DIAGNOSTICS_SQLITE_INTEGRITY_NSS_CERT_TEST, &info));
129 EXPECT_EQ(DiagnosticsModel::TEST_FAIL_CONTINUE, info->GetResult());
130 EXPECT_EQ(DIAG_SQLITE_ERROR_HANDLER_CALLED, info->GetOutcomeCode())
148 const DiagnosticsModel::TestInfo* info = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_navigation/
web_navigation_api_helpers.cc 44 EventFilteringInfo info; local
45 info.SetURL(url);
52 event->filter_info = info;
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_permissions.cc 85 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local
86 if (info) {
87 int process_id = info->GetChildID();
88 int route_id = info->GetRouteID();
  /external/chromium_org/chrome/browser/extensions/
permissions_updater.cc 162 UpdatedExtensionPermissionsInfo info = UpdatedExtensionPermissionsInfo( local
168 content::Details<UpdatedExtensionPermissionsInfo>(&info));
  /external/chromium_org/chrome/browser/metrics/
time_ticks_experiment_win.cc 48 base::win::OSInfo* info = base::win::OSInfo::GetInstance(); local
49 UMA_HISTOGRAM_ENUMERATION("WinTimeTicks.VersionTotal", info->version(),
90 info->version(), base::win::VERSION_WIN_LAST);
95 UMA_HISTOGRAM_ENUMERATION("WinTimeTicks.TickedBackwards", info->version(),
108 info->version(), base::win::VERSION_WIN_LAST);
  /external/chromium_org/chrome/browser/prerender/
prerender_resource_throttle.cc 36 const content::ResourceRequestInfo* info = local
43 AsWeakPtr(), request_->method(), info->GetResourceType(),
44 info->GetChildID(), info->GetRenderFrameID(),
50 const content::ResourceRequestInfo* info = local
60 AsWeakPtr(), header, info->GetResourceType(), info->IsAsync(),
61 info->GetChildID(), info->GetRenderFrameID(), new_url));
  /external/chromium_org/chrome/common/extensions/api/i18n/
default_locale_handler.cc 28 LocaleInfo* info = static_cast<LocaleInfo*>( local
30 return info ? info->default_locale : base::EmptyString();
40 scoped_ptr<LocaleInfo> info(new LocaleInfo);
42 &info->default_locale) ||
43 !l10n_util::IsValidLocaleSyntax(info->default_locale)) {
47 extension->SetManifestData(keys::kDefaultLocale, info.release());
  /external/chromium_org/chrome/common/extensions/api/identity/
oauth2_manifest_handler.cc 36 OAuth2Info* info = static_cast<OAuth2Info*>( local
38 return info ? *info : g_empty_oauth2_info.Get();
49 scoped_ptr<OAuth2Info> info(new OAuth2Info);
61 !dict->GetBoolean(kAutoApprove, &info->auto_approve)) {
68 if ((!dict->GetString(kClientId, &info->client_id) ||
69 info->client_id.empty()) &&
70 (extension->location() != Manifest::COMPONENT || !info->auto_approve)) {
87 info->scopes.push_back(scope);
90 extension->SetManifestData(keys::kOAuth2, info.release())
    [all...]
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle.cc 103 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request_); local
104 if (!info)
108 if (!info->GetAssociatedRenderFrame(&render_process_id, &render_frame_id))
113 info->GetReferrerPolicy()),
114 info->HasUserGesture(),
116 info->GetPageTransition(),
  /external/chromium_org/content/browser/compositor/
software_output_device_win.cc 102 SkImageInfo info = SkImageInfo::MakeN32Premul(rect.width(), rect.height()); local
104 info, pixels, info.minRowBytes(), rect.x(), rect.y());
  /external/chromium_org/content/browser/gamepad/
gamepad_service.cc 130 const ConsumerInfo& info = *it; local
131 info.did_observe_user_gesture = true;
137 info.consumer->OnGamepadConnected(i, pad);
  /external/chromium_org/content/browser/loader/
sync_resource_handler.cc 73 const ResourceRequestInfoImpl* info = GetRequestInfo(); local
74 if (!info->filter())
79 request(), info->GetContext(), response, info->filter());
  /external/chromium_org/content/test/net/
url_request_abort_on_end_job.cc 53 net::HttpResponseInfo* info) const {
66 info->headers = new net::HttpResponseHeaders(raw_headers);
79 void URLRequestAbortOnEndJob::GetResponseInfo(net::HttpResponseInfo* info) {
80 GetResponseInfoConst(info);
84 net::HttpResponseInfo info; local
85 GetResponseInfoConst(&info);
86 return info.headers.get() && info.headers->GetMimeType(mime_type);
  /external/chromium_org/extensions/common/
event_filter_unittest.cc 97 EventFilteringInfo info; local
98 info.SetURL(GURL("http://www.yahoo.com"));
101 "event1", info, MSG_ROUTING_NONE);
125 EventFilteringInfo info; local
126 info.SetURL(GURL("http://www.google.com"));
130 "event1", info, MSG_ROUTING_NONE);
  /external/chromium_org/extensions/common/manifest_handlers/
requirements_info.cc 36 RequirementsInfo* info = static_cast<RequirementsInfo*>( local
41 CHECK(info);
42 return *info;

Completed in 336 milliseconds

<<11121314151617181920>>