Home
last modified time | relevance | path

Searched full:instance (Results 1 – 25 of 19162) sorted by relevance

12345678910>>...767

/external/mesa3d/src/virtio/vulkan/
Dvn_instance.c24 * Instance extensions add instance-level or physical-device-level
74 vn_instance_init_renderer_versions(struct vn_instance *instance) in vn_instance_init_renderer_versions() argument
77 VkResult result = vn_call_vkEnumerateInstanceVersion(instance->ring.ring, in vn_instance_init_renderer_versions()
81 vn_log(instance, "failed to enumerate renderer instance version"); in vn_instance_init_renderer_versions()
87 vn_log(instance, "unsupported renderer instance version %d.%d", in vn_instance_init_renderer_versions()
95 vn_log(instance, "renderer instance version %d.%d.%d", in vn_instance_init_renderer_versions()
102 instance->renderer_api_version = in vn_instance_init_renderer_versions()
103 MAX2(instance->base.base.app_info.api_version, VN_MIN_RENDERER_VERSION); in vn_instance_init_renderer_versions()
105 /* instance version for internal use is capped */ in vn_instance_init_renderer_versions()
106 instance_version = MIN3(instance_version, instance->renderer_api_version, in vn_instance_init_renderer_versions()
[all …]
/external/googleapis/google/cloud/sql/v1beta4/
Dcloud_sql.proto41 delete: "/sql/v1beta4/projects/{project}/instances/{instance}/backupRuns/{id}"
48 get: "/sql/v1beta4/projects/{project}/instances/{instance}/backupRuns/{id}"
55 post: "/sql/v1beta4/projects/{project}/instances/{instance}/backupRuns"
60 // Lists all backup runs associated with the project or a given instance and
65 get: "/sql/v1beta4/projects/{project}/instances/{instance}/backupRuns"
76 // Deletes a database from a Cloud SQL instance.
79 delete: "/sql/v1beta4/projects/{project}/instances/{instance}/databases/{database}"
84 // SQL instance.
87 get: "/sql/v1beta4/projects/{project}/instances/{instance}/databases/{database}"
92 // SQL instance.
[all …]
/external/googleapis/google/cloud/sql/v1/
Dcloud_sql_instances.proto40 // instance. Required to prepare for a certificate rotation. If a CA version
46 post: "/v1/projects/{project}/instances/{instance}/addServerCa"
50 // Creates a Cloud SQL instance as a clone of the source instance. Using this
51 // operation might cause your instance to restart.
54 post: "/v1/projects/{project}/instances/{instance}/clone"
59 // Deletes a Cloud SQL instance.
62 delete: "/v1/projects/{project}/instances/{instance}"
66 // Demotes the stand-alone instance to be a Cloud SQL read replica for an
70 post: "/v1/projects/{project}/instances/{instance}/demoteMaster"
75 // Demotes an existing standalone instance to be a Cloud SQL read replica
[all …]
/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
DManagedInstanceOrBuilder.java30instance group has scheduled for the instance. Possible values: - NONE The instance is running, an…
43instance group has scheduled for the instance. Possible values: - NONE The instance is running, an…
56instance group has scheduled for the instance. Possible values: - NONE The instance is running, an…
70 …* [Output only] The unique identifier for this resource. This field is empty when instance does no…
82 …* [Output only] The unique identifier for this resource. This field is empty when instance does no…
95 …* [Output Only] The URL of the instance. The URL can exist even if the instance has not yet been c…
98 * <code>optional string instance = 18257045;</code>
100 * @return Whether the instance field is set.
107 …* [Output Only] The URL of the instance. The URL can exist even if the instance has not yet been c…
110 * <code>optional string instance = 18257045;</code>
[all …]
DManagedInstance.java25 * A Managed Instance resource.
77instance group has scheduled for the instance. Possible values: - NONE The instance is running, an…
100 …* The managed instance group is abandoning this instance. The instance will be removed from the in…
110 …* The managed instance group is creating this instance. If the group fails to create this instance
120 …* The managed instance group is attempting to create this instance only once. If the group fails t…
130 * The managed instance group is permanently deleting this instance.
140 * The managed instance group has not scheduled any actions for this instance.
150 * The managed instance group is recreating this instance.
160instance group is applying configuration changes to the instance without stopping it. For example,…
170 * The managed instance group is restarting this instance.
[all …]
/external/mesa3d/src/amd/vulkan/
Dradv_instance.c177 radv_init_dri_options(struct radv_instance *instance) in radv_init_dri_options() argument
179 …driParseOptionInfo(&instance->drirc.available_options, radv_dri_options, ARRAY_SIZE(radv_dri_optio… in radv_init_dri_options()
180 …driParseConfigFiles(&instance->drirc.options, &instance->drirc.available_options, 0, "radv", NULL,… in radv_init_dri_options()
181 instance->vk.app_info.app_name, instance->vk.app_info.app_version, in radv_init_dri_options()
182 instance->vk.app_info.engine_name, instance->vk.app_info.engine_version); in radv_init_dri_options()
184 instance->drirc.enable_mrt_output_nan_fixup = in radv_init_dri_options()
185 driQueryOptionb(&instance->drirc.options, "radv_enable_mrt_output_nan_fixup"); in radv_init_dri_options()
187 instance->drirc.disable_shrink_image_store = in radv_init_dri_options()
188 driQueryOptionb(&instance->drirc.options, "radv_disable_shrink_image_store"); in radv_init_dri_options()
190 instance->drirc.disable_tc_compat_htile_in_general = in radv_init_dri_options()
[all …]
/external/libtracefs/src/
Dtracefs-instance.c34 supported_opts_mask(struct tracefs_instance *instance) in supported_opts_mask() argument
36 return instance ? &instance->supported_opts : &toplevel_supported_opts; in supported_opts_mask()
40 enabled_opts_mask(struct tracefs_instance *instance) in enabled_opts_mask() argument
42 return instance ? &instance->enabled_opts : &toplevel_enabled_opts; in enabled_opts_mask()
46 * instance_alloc - allocate a new ftrace instance
47 * @trace_dir - Full path to the tracing directory, where the instance is
48 * @name: The name of the instance (instance will point to this)
50 * Returns a newly allocated instance, or NULL in case of an error.
54 struct tracefs_instance *instance; in instance_alloc() local
56 instance = calloc(1, sizeof(*instance)); in instance_alloc()
[all …]
Dtracefs-marker.c19 static inline int *get_marker_fd(struct tracefs_instance *instance, bool raw) in get_marker_fd() argument
22 return instance ? &instance->ftrace_marker_raw_fd : &ftrace_marker_raw_fd; in get_marker_fd()
23 return instance ? &instance->ftrace_marker_fd : &ftrace_marker_fd; in get_marker_fd()
26 static int marker_init(struct tracefs_instance *instance, bool raw) in marker_init() argument
29 pthread_mutex_t *lock = trace_get_lock(instance); in marker_init()
30 int *fd = get_marker_fd(instance, raw); in marker_init()
47 *fd = tracefs_instance_file_open(instance, file, O_WRONLY | O_CLOEXEC); in marker_init()
55 static void marker_close(struct tracefs_instance *instance, bool raw) in marker_close() argument
57 pthread_mutex_t *lock = trace_get_lock(instance); in marker_close()
58 int *fd = get_marker_fd(instance, raw); in marker_close()
[all …]
/external/sdv/vsomeip/test/offer_tests/conf/
Doffer_test_big_sd_msg_slave.json.in23 …{"service":"0x1","instance":"0x1","unreliable":"30001","reliable":{"port":"30001","enable-magic-co… string
24 …{"service":"0x2","instance":"0x1","unreliable":"30002","reliable":{"port":"30002","enable-magic-co… string
25 …{"service":"0x3","instance":"0x1","unreliable":"30003","reliable":{"port":"30003","enable-magic-co… string
26 …{"service":"0x4","instance":"0x1","unreliable":"30004","reliable":{"port":"30004","enable-magic-co… string
27 …{"service":"0x5","instance":"0x1","unreliable":"30005","reliable":{"port":"30005","enable-magic-co… string
28 …{"service":"0x6","instance":"0x1","unreliable":"30006","reliable":{"port":"30006","enable-magic-co… string
29 …{"service":"0x7","instance":"0x1","unreliable":"30007","reliable":{"port":"60000","enable-magic-co… string
30 …{"service":"0x8","instance":"0x1","unreliable":"30008","reliable":{"port":"30008","enable-magic-co… string
31 …{"service":"0x9","instance":"0x1","unreliable":"60000","reliable":{"port":"30009","enable-magic-co… string
32 …{"service":"0xA","instance":"0x1","unreliable":"30010","reliable":{"port":"30010","enable-magic-co… string
[all …]
/external/trace-cmd/tracecmd/
Dtrace-record.c164 static inline int is_top_instance(struct buffer_instance *instance) in is_top_instance() argument
166 return instance == &top_instance; in is_top_instance()
174 static void init_instance(struct buffer_instance *instance) in init_instance() argument
176 instance->event_next = &instance->events; in init_instance()
196 struct buffer_instance *instance; member
301 * add_instance - add a buffer instance to the internal list
302 * @instance: The buffer instance to add
304 void add_instance(struct buffer_instance *instance, int cpu_count) in add_instance() argument
306 init_instance(instance); in add_instance()
307 instance->next = buffer_instances; in add_instance()
[all …]
/external/googleapis/google/spanner/admin/instance/v1/
Dspanner_instance_admin.proto17 package google.spanner.admin.instance.v1;
29 import "google/spanner/admin/instance/v1/common.proto";
31 option csharp_namespace = "Google.Cloud.Spanner.Admin.Instance.V1";
32 option go_package = "cloud.google.com/go/spanner/admin/instance/apiv1/instancepb;instancepb";
35 option java_package = "com.google.spanner.admin.instance.v1";
36 option php_namespace = "Google\\Cloud\\Spanner\\Admin\\Instance\\V1";
37 option ruby_package = "Google::Cloud::Spanner::Admin::Instance::V1";
39 // Cloud Spanner Instance Admin API
41 // The Cloud Spanner Instance Admin API can be used to create, delete,
45 // Each instance has a "configuration", which dictates where the
[all …]
/external/mesa3d/src/vulkan/runtime/
Dvk_instance.c50 vk_instance_init(struct vk_instance *instance, in vk_instance_init() argument
56 memset(instance, 0, sizeof(*instance)); in vk_instance_init()
57 vk_object_base_instance_init(instance, &instance->base, VK_OBJECT_TYPE_INSTANCE); in vk_instance_init()
58 instance->alloc = *alloc; in vk_instance_init()
67 list_inithead(&instance->debug_utils.instance_callbacks); in vk_instance_init()
78 return vk_error(instance, VK_ERROR_OUT_OF_HOST_MEMORY); in vk_instance_init()
80 vk_object_base_instance_init(instance, &messenger->base, in vk_instance_init()
90 &instance->debug_utils.instance_callbacks); in vk_instance_init()
98 instance->app_info = (struct vk_app_info) { .api_version = 0 }; in vk_instance_init()
102 instance->app_info.app_name = in vk_instance_init()
[all …]
/external/python/oauth2client/tests/contrib/
Dtest_locked_file.py33 instance, filename = self._make_one()
34 self.assertFalse(instance._locked)
35 self.assertEqual(instance._filename, filename)
36 self.assertEqual(instance._mode, 'r+')
37 self.assertEqual(instance._fallback_mode, 'r')
38 self.assertIsNone(instance._fh)
39 self.assertIsNone(instance._lock_fd)
42 instance, _ = self._make_one()
43 self.assertFalse(instance.is_locked())
44 instance._locked = True
[all …]
/external/openthread/src/core/instance/
Dinstance.hpp31 * This file defines OpenThread instance class.
59 #include "instance/extension.hpp"
141 * @addtogroup core-instance
144 * This module includes definitions for OpenThread instance.
151 * Represents an opaque (and empty) type corresponding to an OpenThread instance object.
161 * Represents an OpenThread instance.
166 class Instance : public otInstance, private NonCopyable class
179 * Initializes the OpenThread instance.
181 * Must be called before any other calls on OpenThread instance.
183 * @param[in] aBuffer The buffer for OpenThread to use for allocating the Instance.
[all …]
/external/fonttools/Tests/designspaceLib/data/
Dtest_v5_sourceserif.designspace224 <instance postscriptfontname="SourceSerif4Roman-CaptionExtraLight">
230 </instance>
231 <instance postscriptfontname="SourceSerif4Roman-CaptionLight">
237 </instance>
238 <instance postscriptfontname="SourceSerif4Roman-CaptionRegular">
244 </instance>
245 <instance postscriptfontname="SourceSerif4Roman-CaptionSemibold">
251 </instance>
252 <instance postscriptfontname="SourceSerif4Roman-CaptionBold">
258 </instance>
[all …]
Dtest_v5_aktiv.designspace242 <instance filename="instances/AktivGroteskCd_Hair.ufo">
248 </instance>
249 <instance filename="instances/AktivGroteskCd_HairIt.ufo">
255 </instance>
256 <instance filename="instances/AktivGrotesk_Hair.ufo">
262 </instance>
263 <instance filename="instances/AktivGrotesk_HairIt.ufo">
269 </instance>
270 <instance filename="instances/AktivGroteskEx_Hair.ufo">
276 </instance>
[all …]
/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dsqladmin.v1.json18 "description": "API for Cloud SQL database instance management",
115 "flatPath": "v1/projects/{project}/instances/{instance}/backupRuns/{id}",
120 "instance",
131 "instance": { object
132 "description": "Cloud SQL instance ID. This does not include the project ID.",
138 "description": "Project ID of the project that contains the instance.",
144 "path": "v1/projects/{project}/instances/{instance}/backupRuns/{id}",
155 "flatPath": "v1/projects/{project}/instances/{instance}/backupRuns/{id}",
160 "instance",
171 "instance": { object
[all …]
Dsqladmin.v1beta4.json18 "description": "API for Cloud SQL database instance management",
115 "flatPath": "sql/v1beta4/projects/{project}/instances/{instance}/backupRuns/{id}",
120 "instance",
131 "instance": { object
132 "description": "Cloud SQL instance ID. This does not include the project ID.",
138 "description": "Project ID of the project that contains the instance.",
144 "path": "sql/v1beta4/projects/{project}/instances/{instance}/backupRuns/{id}",
155 "flatPath": "sql/v1beta4/projects/{project}/instances/{instance}/backupRuns/{id}",
160 "instance",
171 "instance": { object
[all …]
/external/libtracefs/include/
Dtracefs.h25 void tracefs_instance_free(struct tracefs_instance *instance);
29 int tracefs_instance_destroy(struct tracefs_instance *instance);
30 bool tracefs_instance_is_new(struct tracefs_instance *instance);
31 const char *tracefs_instance_get_name(struct tracefs_instance *instance);
32 const char *tracefs_instance_get_trace_dir(struct tracefs_instance *instance);
34 tracefs_instance_get_file(struct tracefs_instance *instance, const char *file);
35 char *tracefs_instance_get_dir(struct tracefs_instance *instance);
36 int tracefs_instance_file_write(struct tracefs_instance *instance,
38 int tracefs_instance_file_append(struct tracefs_instance *instance,
40 int tracefs_instance_file_clear(struct tracefs_instance *instance,
[all …]
/external/cronet/base/allocator/partition_allocator/src/partition_alloc/starscan/
Dpcscan.cc13 PCScanInternal::Instance().Initialize(config); in Initialize()
17 return PCScanInternal::Instance().is_initialized(); in IsInitialized()
21 auto& instance = PCScan::Instance(); in Disable() local
22 instance.scheduler().scheduling_backend().DisableScheduling(); in Disable()
26 auto& instance = PCScan::Instance(); in IsEnabled() local
27 return instance.scheduler().scheduling_backend().is_scheduling_enabled(); in IsEnabled()
31 auto& instance = PCScan::Instance(); in Reenable() local
32 instance.scheduler().scheduling_backend().EnableScheduling(); in Reenable()
36 PCScanInternal::Instance().RegisterScannableRoot(root); in RegisterScannableRoot()
40 PCScanInternal::Instance().RegisterNonScannableRoot(root); in RegisterNonScannableRoot()
[all …]
/external/googleapis/google/cloud/datafusion/v1beta1/
Dv1beta1.proto63 // Gets details of a single Data Fusion instance.
64 rpc GetInstance(GetInstanceRequest) returns (Instance) {
70 // Creates a new Data Fusion instance in the specified project and location.
74 body: "instance"
76 option (google.api.method_signature) = "parent,instance,instance_id";
78 response_type: "Instance"
83 // Deletes a single Data Fusion instance.
95 // Updates a single Data Fusion instance.
98 patch: "/v1beta1/{instance.name=projects/*/locations/*/instances/*}"
99 body: "instance"
[all …]
/external/google-cloud-java/java-data-fusion/proto-google-cloud-data-fusion-v1beta1/src/main/proto/google/cloud/datafusion/v1beta1/
Dv1beta1.proto63 // Gets details of a single Data Fusion instance.
64 rpc GetInstance(GetInstanceRequest) returns (Instance) {
70 // Creates a new Data Fusion instance in the specified project and location.
74 body: "instance"
76 option (google.api.method_signature) = "parent,instance,instance_id";
78 response_type: "Instance"
83 // Deletes a single Data Fusion instance.
95 // Updates a single Data Fusion instance.
98 patch: "/v1beta1/{instance.name=projects/*/locations/*/instances/*}"
99 body: "instance"
[all …]
/external/googleapis/google/cloud/datafusion/v1/
Ddatafusion.proto61 // Gets details of a single Data Fusion instance.
62 rpc GetInstance(GetInstanceRequest) returns (Instance) {
68 // Creates a new Data Fusion instance in the specified project and location.
72 body: "instance"
74 option (google.api.method_signature) = "parent,instance,instance_id";
76 response_type: "Instance"
81 // Deletes a single Date Fusion instance.
93 // Updates a single Data Fusion instance.
96 patch: "/v1/{instance.name=projects/*/locations/*/instances/*}"
97 body: "instance"
[all …]
/external/google-cloud-java/java-data-fusion/proto-google-cloud-data-fusion-v1/src/main/proto/google/cloud/datafusion/v1/
Ddatafusion.proto61 // Gets details of a single Data Fusion instance.
62 rpc GetInstance(GetInstanceRequest) returns (Instance) {
68 // Creates a new Data Fusion instance in the specified project and location.
72 body: "instance"
74 option (google.api.method_signature) = "parent,instance,instance_id";
76 response_type: "Instance"
81 // Deletes a single Date Fusion instance.
93 // Updates a single Data Fusion instance.
96 patch: "/v1/{instance.name=projects/*/locations/*/instances/*}"
97 body: "instance"
[all …]
/external/googleapis/google/cloud/notebooks/v2/
Dinstance.proto39 // The instance upgrade is started.
42 // The instance upgrade is succeeded.
45 // The instance upgrade is failed.
61 // Optional. The snapshot of the boot disk of this notebook instance before
65 // Optional. The VM image before this instance upgrade.
68 // Optional. The container image before this instance upgrade.
71 // Optional. The framework of this notebook instance.
74 // Optional. The version of the notebook instance before this upgrade.
77 // Output only. The state of this instance upgrade history entry.
80 // Immutable. The time that this instance upgrade history entry is created.
[all …]

12345678910>>...767