/external/chromium/chrome/browser/sync/util/ |
user_settings.h | 43 // Saves the email address and the named service token for the given user. 45 // service tokens. 49 // Erases all saved service tokens. 56 // service token for the named service 99 // TODO(sync): Use in-memory cache for service auth tokens on posix.
|
/external/chromium_org/chrome/browser/chromeos/app_mode/ |
kiosk_app_update_service.cc | 36 ExtensionService* service = local 38 if (service) 39 service->AddUpdateObserver(this); 65 ExtensionService* service = profile_->GetExtensionService(); local 66 if (service) 67 service->RemoveUpdateObserver(this);
|
/external/chromium_org/chrome/browser/extensions/api/mdns/ |
mdns_apitest.cc | 91 extensions::DnsSdService service; local 92 service.service_name = service_type; 93 services.push_back(service); 133 extensions::DnsSdService service; local 134 service.service_name = service_type; 135 services.push_back(service);
|
/external/chromium_org/components/policy/core/common/cloud/ |
cloud_policy_core_unittest.cc | 84 EXPECT_FALSE(core_.service()); 87 // Connect() brings up client and service. 90 EXPECT_TRUE(core_.service()); 96 // Disconnect() goes back to no client and service. 99 EXPECT_FALSE(core_.service()); 108 EXPECT_FALSE(core_.service());
|
/external/chromium_org/components/webdata/common/ |
web_data_service_base.h | 58 // Shutdown the web data service. The service can no longer be used after this 62 // Initializes the web data service. 65 // Unloads the database without actually shutting down the service. This can 69 // Unloads the database permanently and shuts down service. 94 // Our database service.
|
/external/chromium_org/gpu/command_buffer/service/ |
context_state.h | 13 #include "gpu/command_buffer/service/gl_utils.h" 14 #include "gpu/command_buffer/service/query_manager.h" 15 #include "gpu/command_buffer/service/texture_manager.h" 16 #include "gpu/command_buffer/service/vertex_attrib_manager.h" 17 #include "gpu/command_buffer/service/vertex_array_manager.h" 123 #include "gpu/command_buffer/service/context_state_autogen.h"
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.h | 64 // Generate the class definitions for the service's interface and the 70 // Generate code that initializes the global variable storing the service's 83 // Generate the service abstract interface. 95 // Generate the default implementations of the service methods, which 99 // Generate the CallMethod() method of the service. 105 // Generate the stub's implementations of the service methods.
|
/external/iptables/extensions/ |
libxt_udp.c | 66 const struct servent *service; local 68 if ((service = getservbyport(htons(port), "udp"))) 69 return service->s_name; 77 const char *service; local 79 if (numeric || (service = port_to_service(port)) == NULL) 82 printf("%s", service);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.h | 63 // Generate the class definitions for the service's interface and the 69 // Generate code that initializes the global variable storing the service's 82 // Generate the service abstract interface. 94 // Generate the default implementations of the service methods, which 98 // Generate the CallMethod() method of the service. 104 // Generate the stub's implementations of the service methods.
|
/frameworks/base/core/java/android/content/pm/ |
RegisteredServicesCache.java | 221 * Value type that describes a Service. The information within can be used 222 * to bind to the service. 307 Log.w(TAG, "Unable to load service info " + resolveInfo.toString()); 312 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e); 314 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e); 342 changes.append(" New service added: ").append(info).append("\n"); 352 changes.append(" Existing service (nop): ").append(info).append("\n"); 359 changes.append(" System service replacing existing: ").append(info) 362 changes.append(" Existing service replacing a removed service: " 502 V service = mSerializerAndParser.createFromXml(parser); local [all...] |
/frameworks/base/services/java/com/android/server/am/ |
UriPermissionOwner.java | 28 final ActivityManagerService service; field in class:UriPermissionOwner 43 service = _service; 71 service.removeUriPermissionIfNeededLocked(perm); 79 service.removeUriPermissionIfNeededLocked(perm); 93 service.removeUriPermissionIfNeededLocked(perm); 108 service.removeUriPermissionIfNeededLocked(perm);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar | |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ServReqDnsPtrTestCase.java | 28 * Service discovery requester test case to search Bonjour domain. 50 * DNS PTR: IPP service. 62 return "Request DNS PTR service test";
|
/development/samples/Support4Demos/src/com/example/android/supportv4/content/ |
SimpleWakefulService.java | 39 // service gets killed and restarted while in the middle of such work 45 Log.i("SimpleWakefulReceiver", "Running service " + (i+1) 52 Log.i("SimpleWakefulReceiver", "Completed service @ " + SystemClock.elapsedRealtime());
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
SpiEngUtils.java | 45 * @param service 48 public static Provider isSupport(String algorithm, String service) { 50 Provider[] provs = Security.getProviders(service.concat(".")
|
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/ |
SpiEngUtils.java | 43 * @param service 46 public static Provider isSupport(String algorithm, String service) { 48 Provider[] provs = Security.getProviders(service.concat(".")
|
/external/bluetooth/bluedroid/stack/avrc/ |
avrc_sdp.c | 72 ** This function will be executed by SDP when the service 86 /* reset service_uuid, so can start another find service */ 99 ** Description This function is called by the application to perform service 101 ** peer device. Information is returned for the first service 102 ** record found on the server that matches the service UUID. 103 ** The callback function will be executed when service discovery 129 ** perform the service search. 174 /* perform service search */ 194 ** string containing the service name. 195 ** If service name is not used set this to NULL [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_function.cc | 25 ExtensionService* service = profile_->GetExtensionService(); local 26 DCHECK(service); 27 return service->GetExtensionById(extension_id_, false);
|
/external/chromium/chrome/browser/policy/ |
device_management_backend_impl.h | 21 // and passes them on to the service for processing. 24 explicit DeviceManagementBackendImpl(DeviceManagementService* service); 53 // Add a job to the pending job set and register it with the service (if
|
/external/chromium/chrome/browser/prefs/ |
pref_change_registrar.cc | 20 void PrefChangeRegistrar::Init(PrefService* service) { 21 DCHECK(IsEmpty() || service_ == service); local 22 service_ = service;
|
/external/chromium/chrome/browser/remoting/ |
setup_flow_get_status_step.cc | 8 #include "chrome/browser/service/service_process_control.h" 9 #include "chrome/browser/service/service_process_control_manager.h" 64 // Failed to start service process.
|
setup_flow_start_host_step.cc | 8 #include "chrome/browser/service/service_process_control.h" 9 #include "chrome/browser/service/service_process_control_manager.h" 83 // necessary to start service process.
|
/external/chromium/chrome/browser/ui/cocoa/ |
history_menu_cocoa_controller.mm | 41 TabRestoreService* service = bridge_->profile()->GetTabRestoreService(); 42 if (node->session_id && service) { 43 service->RestoreEntryById(browser->tab_restore_service_delegate(),
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
user_cloud_policy_token_forwarder.h | 20 // token for the UserCloudPolicyManagerChromeOS, when the token service becomes 21 // ready. This service decouples the UserCloudPolicyManagerChromeOS from 50 virtual void OnInitializationCompleted(CloudPolicyService* service) OVERRIDE;
|
/external/chromium_org/chrome/browser/policy/cloud/ |
user_cloud_policy_invalidator.cc | 27 // service cannot be started because it depends on components initialized 30 // context can be accessed during profile-keyed service creation. Tracked by 46 // service can safely be initialized.
|