Home
last modified time | relevance | path

Searched full:how (Results 1 – 25 of 26650) sorted by relevance

12345678910>>...1066

/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/openat2/
H A Dresolve_test.c113 struct open_how how; member
139 .path = "/", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
142 .path = "cheeky/absself", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
145 .path = "abscheeky/absself", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
148 .path = "..", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
151 .path = "../root/", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
154 .path = "cheeky/self", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
157 .path = "abscheeky/self", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
160 .path = "cheeky/garbageself", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
163 .path = "abscheeky/garbageself", .how.resolve = RESOLVE_BENEATH, in test_openat2_opath_tests()
[all …]
H A Dopenat2_test.c158 struct open_how how; member
169 .how.flags = O_TMPFILE | O_PATH | O_RDWR, .err = -EINVAL }, in test_openat2_flags()
171 .how.flags = O_TMPFILE | O_CREAT | O_RDWR, .err = -EINVAL }, in test_openat2_flags()
175 .how.flags = O_PATH | O_CLOEXEC }, in test_openat2_flags()
177 .how.flags = O_PATH | O_DIRECTORY }, in test_openat2_flags()
179 .how.flags = O_PATH | O_NOFOLLOW }, in test_openat2_flags()
182 .how.flags = O_PATH | O_RDWR, .err = -EINVAL }, in test_openat2_flags()
184 .how.flags = O_PATH | O_CREAT, .err = -EINVAL }, in test_openat2_flags()
186 .how.flags = O_PATH | O_EXCL, .err = -EINVAL }, in test_openat2_flags()
188 .how.flags = O_PATH | O_NOCTTY, .err = -EINVAL }, in test_openat2_flags()
[all …]
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/openat2/
H A Dopenat201.c13 static struct open_how *how; variable
24 struct open_how **how; member
27 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, 0, &how, sizeof(*how)},
28 {&dir_fd, TEST_FILE, O_RDONLY, S_IRUSR, 0, &how, sizeof(*how)},
29 {&dir_fd, TEST_FILE, O_WRONLY, S_IWUSR, 0, &how, sizeof(*how)},
30 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_NO_XDEV, &how, sizeof(*how)},
31 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_NO_MAGICLINKS, &how, sizeof(*how)},
32 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_NO_SYMLINKS, &how, sizeof(*how)},
33 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_BENEATH, &how, sizeof(*how)},
34 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_IN_ROOT, &how, sizeof(*how)},
[all …]
H A Dopenat203.c12 static struct open_how *how; variable
22 struct open_how **how; member
26 {"invalid-dfd", -1, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, sizeof(*how), EBADF},
27 {"invalid-pathname", AT_FDCWD, NULL, O_RDONLY | O_CREAT, S_IRUSR, 0, &how, sizeof(*how), EFAULT},
28 {"invalid-flags", AT_FDCWD, TEST_FILE, O_RDONLY, S_IWUSR, 0, &how, sizeof(*how), EINVAL},
29 {"invalid-mode", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, -1, 0, &how, sizeof(*how), EINVAL},
30 …{"invalid-resolve", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, -1, &how, sizeof(*how), EINVAL…
31 {"invalid-size-zero", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, 0, EINVAL},
32 …{"invalid-size-small", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, sizeof(*how) - 1, …
33 …{"invalid-size-big", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, sizeof(*how) + 1, EF…
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/lang/StackWalker/
H A DReflectionFrames.java91 .getMethod("create", How.class) in testNewStackInspector()
92 .invoke(null, How.NEW)); in testNewStackInspector()
113 .getMethod("reflect", How.class) in testNewStackInspector()
114 .invoke(null, How.NEW)); in testNewStackInspector()
137 .getMethod("handle", How.class) in testNewStackInspector()
138 .invoke(null, How.NEW)); in testNewStackInspector()
165 .getMethod("create", How.class) in testNewStackInspector()
166 .invoke(null, How.NEW)); in testNewStackInspector()
192 .getMethod("reflect", How.class) in testNewStackInspector()
193 .invoke(null, How.NEW)); in testNewStackInspector()
[all …]
/aosp_15_r20/development/samples/ApiDemos/src/com/example/android/apis/app/
H A D_index.html28 <dd>Demonstrates how an activity should save state when it is paused.</dd>
31 <dd>Demonstrates how you can save and restore preferences, which are stored
35 <dd>Demonstrates how an activity screen can return a result to the
44 <dd>Demonstrates how to save data to preferences and use it to determine
48 <dd>Demonstrates how to make an activity with a transparent background. </dd>
51 <dd>Demonstrates how to make an activity with a transparent background with
62 <dd>Demonstrates how to use custom animations when moving between activities. </dd>
65 <dd>Demonstrates how an Activity can cause itself to be recreated.</dd>
71 <dd>Demonstrates how different soft input modes set in an Activity's
72 window impacts how it adjusts to accommodate an IME.</dd>
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/doc/
Dexamples.qbk32 This example shows how to customise the allocation of memory associated with
40 This example demonstrates how to create reference counted buffers that can be
55 The following POSIX-specific chat client demonstrates how to use the
77 These POSIX-specific examples show how to use Boost.Asio in conjunction with the
83 The second example demonstrates how it is possible to fork a process from
91 Example programs implementing simple HTTP 1.0 clients. These examples show how
102 implementation of HTTP 1.0. It demonstrates how to perform a clean shutdown by
189 This example shows how to use raw sockets with ICMP to ping a remote host.
198 This example shows how to customise handler invocation. Completion handlers are
206 Two examples showing how to use [link boost_asio.reference.ip__tcp.iostream
[all …]
/aosp_15_r20/external/curl/docs/
H A DFAQ19 1.10 How many are using curl?
23 1.14 How do I submit my patch?
24 1.15 How do I port libcurl to my OS?
29 2.3 How do I upgrade curl.exe in Windows?
34 3.2 How do I tell curl to resume a transfer?
36 3.4 How do I tell curl to run custom FTP commands?
37 3.5 How can I disable the Accept: */* header?
40 3.8 How do I tell curl to follow HTTP redirects?
41 3.9 How do I use curl in my favorite programming language?
43 3.11 How do I POST with a different Content-Type?
[all …]
/aosp_15_r20/tools/test/connectivity/acts_tests/tests/google/tel/lab/
DTelLabGFTDSDSInOutServiceTest.py77 loop: repeat this test cases for how many times
304 loop: repeat this test cases for how many times
322 loop: repeat this test cases for how many times
340 loop: repeat this test cases for how many times
358 loop: repeat this test cases for how many times
376 loop: repeat this test cases for how many times
394 loop: repeat this test cases for how many times
411 loop: repeat this test cases for how many times
428 loop: repeat this test cases for how many times
445 loop: repeat this test cases for how many times
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/doc/
Dexamples_table.qbk19 [This examples shows how member functions can be used as system functions in odeint.]]
22 …[This examples shows how member functions can be used as system functions in odeint with `std::bin…
34 [The Fermi-Pasta-Ulam (FPU) example shows how odeint can be used to integrate lattice systems.]]
37 [Shows skeletal code on how to implement own factory functions.]]
43 [This examples shows how __boost_units can be used with odeint.]]
46 …[The Heun example shows how an custom Runge-Kutta stepper can be created with odeint generic Runge…
55 [Simple example showing how to get odeint to work with a self-defined vector type.]]
58 …[The phase oscillator ensemble example shows how globally coupled oscillators can be analyzed and
79 [The Stuart-Landau example shows how odeint can be used with complex state types.]]
82 …[The 2D phase oscillator example shows how a two-dimensional lattice works with odeint and how mat…
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dmonitoring_v1.projects.dashboards.html82 <p class="firstline">Creates a new custom dashboard. For examples on how you can use this API to cr…
106 …<pre>Creates a new custom dashboard. For examples on how you can use this API to create dashboards…
119 …{ # Widget contains a single dashboard component and configuration of how to present the component…
131 …&quot;scorecard&quot;: { # A widget showing the latest value of a metric, and how this value relat…
151 …&quot;aggregation&quot;: { # Describes how to combine multiple time series to provide a different …
154 …erve when cross_series_reducer is specified. The group_by_fields determine how the time series are…
157 …&quot;perSeriesAligner&quot;: &quot;A String&quot;, # An Aligner describes how to bring the data p…
161 …&quot;direction&quot;: &quot;A String&quot;, # How to use the ranking to select time series that p…
162 … &quot;numTimeSeries&quot;: 42, # How many time series to allow to pass through the filter.
165 …&quot;secondaryAggregation&quot;: { # Describes how to combine multiple time series to provide a d…
[all …]
Dhealthcare_v1beta1.projects.locations.datasets.dicomStores.studies.html87 …r samples that show how to call DeleteStudy, see [Deleting a study, series, or instance](https://c…
90 …. For samples that show how to call RetrieveStudyMetadata, see [Retrieving metadata](https://cloud…
93 …ent. For samples that show how to call RetrieveStudy, see [Retrieving DICOM data](https://cloud.go…
96 …hat show how to call SearchForInstances, see [Searching for studies, series, instances, and frames…
99 …that show how to call SearchForSeries, see [Searching for studies, series, instances, and frames](…
102 …ment. For samples that show how to call StoreInstances, see [Storing DICOM data](https://cloud.goo…
111 …r samples that show how to call DeleteStudy, see [Deleting a study, series, or instance](https://c…
126 …ssage, and error details. You can find out more about this error model and how to work with it in …
147 …. For samples that show how to call RetrieveStudyMetadata, see [Retrieving metadata](https://cloud…
160 …ody) returns (stream google.api.HttpBody); } Use of this type only changes how the request and res…
[all …]
Dhealthcare_v1.projects.locations.datasets.dicomStores.studies.html87 …r samples that show how to call DeleteStudy, see [Deleting a study, series, or instance](https://c…
90 …. For samples that show how to call RetrieveStudyMetadata, see [Retrieving metadata](https://cloud…
93 …ent. For samples that show how to call RetrieveStudy, see [Retrieving DICOM data](https://cloud.go…
96 …hat show how to call SearchForInstances, see [Searching for studies, series, instances, and frames…
99 …that show how to call SearchForSeries, see [Searching for studies, series, instances, and frames](…
102 …ment. For samples that show how to call StoreInstances, see [Storing DICOM data](https://cloud.goo…
111 …r samples that show how to call DeleteStudy, see [Deleting a study, series, or instance](https://c…
126 …ssage, and error details. You can find out more about this error model and how to work with it in …
147 …. For samples that show how to call RetrieveStudyMetadata, see [Retrieving metadata](https://cloud…
160 …ody) returns (stream google.api.HttpBody); } Use of this type only changes how the request and res…
[all …]
Dmonitoring_v3.projects.alertPolicies.html114 …ot;: { # Control over how the notification channels in notification_channels are notified when thi…
120 …&quot;combiner&quot;: &quot;A String&quot;, # How to combine the results of multiple conditions to…
124 …pecifies the alignment of data points in individual time series as well as how to combine the retr…
125 …{ # Describes how to combine multiple time series to provide a different view of the data. Aggrega…
128 …erve when cross_series_reducer is specified. The group_by_fields determine how the time series are…
131 …&quot;perSeriesAligner&quot;: &quot;A String&quot;, # An Aligner describes how to bring the data p…
136 …&quot;trigger&quot;: { # Specifies how many time series must fail a predicate to trigger a conditi…
142 … Queries (https://cloud.google.com/logging/docs/view/advanced-queries) for how this filter should …
143 …he value for this label key. Each entry in this map is a specification for how data should be extr…
150 …&quot;trigger&quot;: { # Specifies how many time series must fail a predicate to trigger a conditi…
[all …]
Dhealthcare_v1.projects.locations.datasets.fhirStores.fhir.html79 …s. For samples that show how to call `Patient-everything`, see [Getting all patient compartment re…
82 …. For samples that show how to call `Resource-purge`, see [Deleting historical versions of a FHIR …
94 …returned instead. For samples that show how to call `create`, see [Creating a FHIR resource](/heal…
97 …the purge method. For samples that show how to call `delete`, see [Deleting a FHIR resource](/heal…
100 …ead. For samples that show how to call `executeBundle`, see [Managing FHIR resources using FHIR bu…
103 …rned instead. For samples that show how to call `history`, see [Listing FHIR resource versions](/h…
106 …returned instead. For samples that show how to call `patch`, see [Patching a FHIR resource](/healt…
109 … returned instead. For samples that show how to call `read`, see [Getting a FHIR resource](/health…
112 … for FHIR resources](/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](/he…
115 … for FHIR resources](/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](/he…
[all …]
Dbillingbudgets_v1.billingAccounts.budgets.html125 …st of acceptable credit type values](https://cloud.google.com/billing/docs/how-to/export-data-bigq…
149 …mes are available through the Catalog API: https://cloud.google.com/billing/v1/how-tos/catalog-api.
161how-to/budgets-notification-recipients). For Cloud Billing budget alerts, you _must use email noti…
164how-to/budgets-programmatic-notifications#notification_format) to contain data for `alertThreshold…
165 …esents the JSON schema as defined in https://cloud.google.com/billing/docs/how-to/budgets-programm…
168how-to/budgets-programmatic-notifications#notification_format) sent to a Pub/Sub topic. Threshold …
195 …st of acceptable credit type values](https://cloud.google.com/billing/docs/how-to/export-data-bigq…
219 …mes are available through the Catalog API: https://cloud.google.com/billing/v1/how-tos/catalog-api.
231how-to/budgets-notification-recipients). For Cloud Billing budget alerts, you _must use email noti…
234how-to/budgets-programmatic-notifications#notification_format) to contain data for `alertThreshold…
[all …]
Dhealthcare_v1beta1.projects.locations.datasets.fhirStores.fhir.html88 …s. For samples that show how to call `Patient-everything`, see [Getting all patient compartment re…
91 …. For samples that show how to call `Resource-purge`, see [Deleting historical versions of a FHIR …
103 …ore. For samples that show how to call `conditionalDelete`, see [Conditionally deleting a FHIR res…
106 …urce. For samples that show how to call `conditionalPatch`, see [Conditionally patching a FHIR res…
109 …ore. For samples that show how to call `conditionalUpdate`, see [Conditionally updating a FHIR res…
112 …returned instead. For samples that show how to call `create`, see [Creating a FHIR resource](/heal…
115 …the purge method. For samples that show how to call `delete`, see [Deleting a FHIR resource](/heal…
118 …ion. For samples that show how to call `executeBundle`, see [Managing FHIR resources using FHIR bu…
121 …rned instead. For samples that show how to call `history`, see [Listing FHIR resource versions](/h…
124 …returned instead. For samples that show how to call `patch`, see [Patching a FHIR resource](/healt…
[all …]
/aosp_15_r20/external/googleapis/google/cloud/audit/
H A Dbigquery_audit_metadata.proto37 // Describes how the job was inserted.
52 // Describes how the job was inserted.
70 // Describes how the job was deleted.
84 // Describes how the job was deleted.
90 // Describes how the dataset was created.
105 // Describes how the dataset was created.
117 // Describes how the dataset was changed.
135 // Describes how the dataset was changed.
147 // Describes how the dataset was deleted.
159 // Describes how the dataset was deleted.
[all …]
/aosp_15_r20/frameworks/proto_logging/stats/express/catalog/
H A Dbluetooth.cfg6 "Counting how many calls to BluetoothAdapter.closeProfileProxy where made with"
17 description: "Counter on how many times CVSD codec is used for HFP."
27 description: "Counter on how many times mSbc codec is used for HFP."
37 description: "Counter on how many times AptX codec is used for HFP."
47 description: "Counter on how many times LC3 codec is used for HFP."
57 description: "Counter on how many times SBC is used for A2DP."
66 description: "Counter on how many times AAC is used for A2DP."
75 description: "Counter on how many times AptX is used for A2DP."
84 description: "Counter on how many times Aptx HD is used for A2DP."
93 description: "Counter on how many times LDAC is used for A2DP."
[all …]
/aosp_15_r20/external/flatbuffers/docs/source/
H A DFlatBuffers.md38 write and what data you don't, and how you design data structures.
94 explaining how it speeds up loading their posts.
100 This section is a quick rundown of how to use this system. Subsequent
127 - How to [build the compiler](@ref flatbuffers_guide_building) and samples on
129 - How to [use the compiler](@ref flatbuffers_guide_using_schema_compiler).
130 - How to [write a schema](@ref flatbuffers_guide_writing_schema).
131 - How to [use the generated C++ code](@ref flatbuffers_guide_use_cpp) in your
133 - How to [use the generated Java code](@ref flatbuffers_guide_use_java)
135 - How to [use the generated C# code](@ref flatbuffers_guide_use_c-sharp)
137 - How to [use the generated Kotlin code](@ref flatbuffers_guide_use_kotlin)
[all …]
/aosp_15_r20/external/clang/www/analyzer/
H A Dfaq.html5 <title>FAQ and How to Deal with Common False Positives</title>
20 <h1>FAQ and How to Deal with Common False Positives</h1>
23 <li><a href="#custom_assert">How do I tell the analyzer that I do not want the bug being
27 pointer is never null. How can I tell the analyzer that a pointer can never be
29 …<li><a href="#dead_store">How do I tell the static analyzer that I don't care about a specific dea…
30 …<li><a href="#unused_ivar">How do I tell the static analyzer that I don't care about a specific un…
31 …<li><a href="#unlocalized_string">How do I tell the static analyzer that I don't care about a spec…
32 …<li><a href="#use_assert">The analyzer assumes that a loop body is never entered. How can I tell …
33 <li><a href="#suppress_issue">How can I suppress a specific analyzer warning?</a></li>
34 <li><a href="#exclude_code">How can I selectively exclude code the analyzer examines?</a></li>
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/util/
H A Ddeprecation_test.py93 instructions = "This is how you update..."
107 instructions = "This is how you update..."
125 instructions = "This is how you update..."
142 instructions = "This is how you update..."
158 instructions = "This is how you update..."
173 instructions = "This is how you update..."
195 instructions = "This is how you update..."
209 instructions = "This is how you update..."
250 instructions = "This is how you update..."
291 instructions = "This is how you update..."
[all …]
/aosp_15_r20/external/python/cpython2/Mac/Demo/
Dindex.html14 afterwards. They still show how to use the Carbon wrappers but aren't
49 part zero</A> whets your appetite by showing you how to ask the user
50 for a filename, and how to display a message. It explains about end-of-line
55 part one</A> explains how to create a simple modal-dialog application
63 how to create applets, standalone applications written in Python.
67 and shows you how to create applications that can be used on machines without
73 how to use <code>FrameWork</code> application framework and the
78 is meant for the hardcore programmer, and shows how to create an
85 is a companion document, written by Corran Webster, which explains how you
90 how to create a Python module interfacing to a scriptable application,
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/organizations/src/main/resources/codegen-resources/
H A Dexamples-1.json76 …"description": "The following example shows how to attach a service control policy (SCP) to an OU:…
91 …"description": "The following example shows how to attach a service control policy (SCP) to an acc…
260 …"description": "The following example shows how to create an OU that is named AccountingOU. The ne…
290 …"description": "The following example shows how to create a service control policy (SCP) that is n…
366 …"description": "The following example shows how to delete an OU. The example assumes that you prev…
382 …"description": "The following example shows how to delete a policy from an organization. The examp…
429 …"description": "The following example shows how to request the status about a previous request to …
485 …"description": "The following example shows you how to request details about a handshake. The hand…
513 …"description": "The following example shows how to request information about the current user's or…
536 "description": "The following example shows how to request details about an OU:/n/n",
[all …]
/aosp_15_r20/external/federated-compute/fcp/client/
H A Dhistogram_counters.proto34 * How long it takes to run a plan on device, excluding downloading the plan
46 /** How long running a "restore state op" takes. */
50 * How long it takes to run training for a whole client execution (which may
56 /** How long running an "init op" takes. */
59 /** How long running a "before op" takes. */
62 /** How long running an "after op" takes. */
66 * How long it takes to run training for a whole epoch. This includes
73 * How long it takes to gather enough examples for a mini batch.
79 * How long it takes to run training on a mini batch.
85 * How long it takes the TensorFlow session to terminate after it's been
[all …]

12345678910>>...1066