Home
last modified time | relevance | path

Searched full:as (Results 1 – 25 of 34151) sorted by relevance

12345678910>>...1367

/external/autotest/tko/migrations/
D031_rename_tko_tables.py1 # Lint as: python2, python3
11 CREATE VIEW tko_test_view AS
20 tko_tests.started_time AS test_started_time,
21 tko_tests.finished_time AS test_finished_time,
22 tko_jobs.tag AS job_tag,
23 tko_jobs.label AS job_label,
24 tko_jobs.username AS job_username,
25 tko_jobs.queued_time AS job_queued_time,
26 tko_jobs.started_time AS job_started_time,
27 tko_jobs.finished_time AS job_finished_time,
[all …]
D004_add_test_started.py20 ALTER VIEW test_view AS
29 tests.started_time AS test_started_time,
30 tests.finished_time AS test_finished_time,
31 jobs.tag AS job_tag,
32 jobs.label AS job_label,
33 jobs.username AS job_username,
34 jobs.queued_time AS job_queued_time,
35 jobs.started_time AS job_started_time,
36 jobs.finished_time AS job_finished_time,
37 machines.hostname AS machine_hostname,
[all …]
D003_add_test_timestamps.py20 ALTER VIEW test_view AS
29 tests.finished_time AS test_finished_time,
30 jobs.tag AS job_tag,
31 jobs.label AS job_label,
32 jobs.username AS job_username,
33 jobs.queued_time AS job_queued_time,
34 jobs.started_time AS job_started_time,
35 jobs.finished_time AS job_finished_time,
36 machines.hostname AS machine_hostname,
38 machines.owner AS machine_owner,
[all …]
D002_add_job_timestamps.py24 ALTER VIEW test_view AS
33 jobs.tag AS job_tag,
34 jobs.label AS job_label,
35 jobs.username AS job_username,
36 jobs.queued_time AS job_queued_time,
37 jobs.started_time AS job_started_time,
38 jobs.finished_time AS job_finished_time,
39 machines.hostname AS machine_hostname,
41 machines.owner AS machine_owner,
43 kernels.base AS kernel_base,
[all …]
/external/rust/android-crates-io/crates/rustix/src/backend/libc/
Dwinsock_c.rs24 // windows-sys declares these constants as u16. For better compatibility
25 // with Unix-family APIs, redeclare them as u32.
26 pub(crate) const AF_INET: i32 = WinSock::AF_INET as _;
27 pub(crate) const AF_INET6: i32 = WinSock::AF_INET6 as _;
28 pub(crate) const AF_UNSPEC: i32 = WinSock::AF_UNSPEC as _;
30 // Include the contents of `WinSock`, renaming as needed to match POSIX.
36 closesocket as close, ioctlsocket as ioctl, WSAPoll as poll, ADDRESS_FAMILY as sa_family_t,
37 ADDRINFOA as addrinfo, IN6_ADDR as in6_addr, IN_ADDR as in_addr, IPV6_MREQ as ipv6_mreq,
38 IP_MREQ as ip_mreq, LINGER as linger, SD_BOTH as SHUT_RDWR, SD_RECEIVE as SHUT_RD,
39 SD_SEND as SHUT_WR, SOCKADDR as sockaddr, SOCKADDR_IN as sockaddr_in,
[all …]
/external/perfetto/src/trace_processor/metrics/sql/android/startup/
Dslow_start_reasons.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
30 RETURNS BOOL AS
35 RETURNS STRING AS
36 SELECT SUBSTRING(CAST(($num * 100 + 0.0) / $total AS STRING), 1, 5);
39 RETURNS STRING AS
40 SELECT CAST(($ns + 0.0) / 1e9 AS STRING);
43 RETURNS STRING AS
44 SELECT SUBSTRING(CAST(($ns + 0.0) / 1e6 AS STRING), 1, 6);
48 RETURNS PROTO AS
67 RETURNS PROTO AS
[all …]
Dhsc.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
21 CREATE PERFETTO VIEW functions AS
23 slices.ts AS ts,
24 slices.dur AS dur,
25 process.name AS process_name,
26 thread.name AS thread_name,
27 slices.name AS function_name
35 CREATE PERFETTO VIEW animators AS
37 slices.ts AS ts,
38 slices.dur AS dur,
[all …]
/external/perfetto/src/trace_processor/metrics/sql/android/
Dwattson_rail_relations.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
17 -- and subrails as well as the hierarchical power estimates of each rail
25 CREATE PERFETTO VIEW _wattson_base_components_avg_mw AS
27 (SELECT m.policy FROM _dev_cpu_policy_map AS m WHERE m.cpu = 0) as cpu0_poli,
28 (SELECT m.policy FROM _dev_cpu_policy_map AS m WHERE m.cpu = 1) as cpu1_poli,
29 (SELECT m.policy FROM _dev_cpu_policy_map AS m WHERE m.cpu = 2) as cpu2_poli,
30 (SELECT m.policy FROM _dev_cpu_policy_map AS m WHERE m.cpu = 3) as cpu3_poli,
31 (SELECT m.policy FROM _dev_cpu_policy_map AS m WHERE m.cpu = 4) as cpu4_poli,
32 (SELECT m.policy FROM _dev_cpu_policy_map AS m WHERE m.cpu = 5) as cpu5_poli,
33 (SELECT m.policy FROM _dev_cpu_policy_map AS m WHERE m.cpu = 6) as cpu6_poli,
[all …]
Dandroid_hwui_metric.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
20 CREATE PERFETTO VIEW hwui_processes AS
22 process.name AS process_name,
23 process.upid AS process_upid,
24 CAST(SUM(sched.dur) / 1e6 AS INT64) AS rt_cpu_time_ms,
25 thread.utid AS render_thread_id
33 CREATE PERFETTO VIEW hwui_draw_frame AS
35 count(*) AS draw_frame_count,
36 max(dur) AS draw_frame_max,
37 min(dur) AS draw_frame_min,
[all …]
Dandroid_frame_timeline_metric.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
19 CREATE PERFETTO VIEW splitted_jank_type_timeline AS
20 WITH RECURSIVE split_jank_type AS (
25 '' AS jank_type,
26 jank_type || ', ' AS unparsed
33 substr(unparsed, 1, instr(unparsed, ',')-1) AS jank_type,
34 substr(unparsed, instr(unparsed, ',')+2) AS unparsed
40 name AS vsync,
47 CREATE PERFETTO VIEW android_frame_timeline_metric_per_process AS
48 WITH frames AS (
[all …]
Dandroid_netperf.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
17 CREATE PERFETTO VIEW rx_packets AS
20 REPLACE(name, " Received KB", "") AS dev,
21 EXTRACT_ARG(arg_set_id, 'cpu') AS cpu,
22 EXTRACT_ARG(arg_set_id, 'len') AS len
30 CREATE PERFETTO VIEW gro_rx_packet_count AS
32 s.name AS dev,
33 COUNT(1) AS cnt
41 CREATE PERFETTO VIEW tx_packets AS
44 REPLACE(name, " Transmitted KB", "") AS dev,
[all …]
Dcodec_metrics.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
29 CREATE PERFETTO VIEW core_type_proto_per_thread_name AS
32 thread.name AS thread_name,
33 core_type_proto_per_thread.proto AS proto
42 CREATE PERFETTO TABLE android_codec_process AS
46 process.name AS process_name
55 CREATE PERFETTO VIEW cpu_cycles_runtime AS
74 RETURNS STRING AS
83 RETURNS STRING AS
107 -- using '@' and considered as part of single slice.
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/sched/
Dthread_executing_span_with_slice.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
21 CREATE PERFETTO TABLE _critical_path_userspace AS
26 (SELECT id AS root_node_id, id - COALESCE(prev_id, id) AS capacity FROM _wakeup_graph),
29 CREATE PERFETTO TABLE _critical_path_kernel AS
31 _kernel_nodes AS (
43 cr.root_id AS parent_id,
50 SELECT graph.id AS root_node_id, graph.id - COALESCE(graph.prev_id, graph.id) AS capacity
54 _wakeup_intervals) AS cr
58 CREATE PERFETTO TABLE _critical_path_userspace_adjusted AS
63 CREATE PERFETTO TABLE _critical_path_kernel_adjusted AS
[all …]
Dthread_executing_span.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
26 -- until the next runnable slice that's woken up by a process (as opposed
42 CREATE PERFETTO TABLE _runnable_state AS
55 ) AS is_irq
61 CREATE PERFETTO TABLE _first_runnable_state AS
63 first_state AS (
65 min(thread_state.id) AS id
82 ) AS is_irq
91 CREATE PERFETTO TABLE _sleep_state AS
108 CREATE PERFETTO TABLE _thread_end_ts AS
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/android/
Dbinder.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
33 ) AS
35 process.name AS process_name,
36 process.pid AS pid,
37 slice.name AS slice_name,
38 count(*) AS event_count
52 CREATE PERFETTO TABLE _binder_txn_merged AS
54 maybe_broken_binder_txn AS (
62 JOIN slice AS ancestor
69 nested_binder_txn AS (
[all …]
Dgarbage_collection.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
25 CREATE PERFETTO VIEW _gc_slice AS
27 concurrent AS (
29 id AS gc_id,
30 name AS gc_name,
31 lead(name) OVER (PARTITION BY track_id ORDER BY ts) AS compact_name,
32 lead(dur) OVER (PARTITION BY track_id ORDER BY ts) AS compact_dur,
33 ts AS gc_ts,
34 iif(dur = -1, trace_end() - slice.ts, slice.dur) AS gc_dur,
43 FROM thread_slice AS slice
[all …]
/external/bc/tests/bc/errors/
D01.txt229 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=ase-=se-=as-=ase-=se-=as-=se-=a(1)
232as=ase-=se-=as-=asj-=se-=as-=se-=axse!=e-=ase-=i-=se-=ase-=se-=se-=ase-=se-=as-=e-=as=ase-=se-=as-…
233 scscales=ase-=se-=as-=ase-=se-=as-=se-=a(1)
237 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=ase-=se-=as-=ase-=se-=as-=se-=a(1)
241 a==se-=as+=ase-=se8=as-=se-=a(1)
245 …=se-=ase-=i-=se-=xse!=e-=ase-=i-=se-=ase-=se-=se-=ase-=se-=as-=e-=as=ase-=se-=as-=ase-=se-=as-=se-…
252 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=as-=ase-=se-=se4=ase-=se-=as-=e-=as=ae-=a(1)
255 …=se-=ase-=i-=se-=xse!=e-=ase-=i-=se-=ase-=se-=se-=ase-=se-=as-=e-=as=ase-=se-=as-=ase-=se-=as-=se-…
259 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=ase = 20
261 a=i-=se-=ase-=se-=ase-=s-=e-=as=ase-=se-=as-=ase-=se-=as-=se-=a(1)
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/android/memory/heap_graph/
Dclass_tree.sql11 -- distributed under the License is distributed ON an "AS IS" BASIS,
25 CREATE PERFETTO TABLE _heap_graph_object_min_depth_tree AS
27 node_id AS id,
28 parent_node_id AS parent_id
31 SELECT owner_id AS source_node_id, owned_id AS dest_node_id
37 SELECT id AS node_id
45 CREATE PERFETTO TABLE _heap_graph_path_hashes AS
50 CREATE PERFETTO TABLE _heap_graph_path_hashes_aggregated AS
55 CREATE PERFETTO TABLE _heap_graph_class_tree AS
64 RETURNS TableOrSubquery AS
[all …]
/external/capstone/bindings/vb6/
DmMisc.bas7 value As Currency
11 LowValue As Long
12 HighValue As Long
17 …re Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As Long
18 Public Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long
19 …Memory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal length As Lo…
20 …re Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As L…
21 …tion GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long
22 …nction SetDllDirectory Lib "kernel32" Alias "SetDllDirectoryA" (ByVal lpPathName As String) As Long
24 Function makeCur(high As Long, low As Long) As Currency
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/callstacks/
Dstack_profile.sql11 -- distributed under the License is distributed on an 'AS IS' BASIS,
22 CREATE PERFETTO TABLE _callstack_spf_summary AS
29 FROM stack_profile_symbol AS s
35 ) AS min_symbol_id,
39 FROM stack_profile_symbol AS s
45 ) AS max_symbol_id
46 FROM stack_profile_frame AS f
50 CREATE PERFETTO TABLE _callstack_spc_raw_forest AS
52 c.id AS callsite_id,
53 s.id AS symbol_id,
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/viz/
Dflamegraph.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
23 RETURNS Expr AS IFNULL($col, 0);
38 AS (
41 IIF($hide_stack, $impossible_stack_bits, $show_stack) AS stackBits,
42 $show_from_frame As showFromFrameBits,
43 $hide_frame = 0 AS showFrame,
44 $pivot AS isPivot,
48 ) AS groupingHash
56 -- 3) computes whether the stack as a whole should be retained or not
62 AS (
[all …]
/external/perfetto/ui/src/plugins/dev.perfetto.AndroidLongBatteryTracing/
Dindex.ts10 // distributed under the License is distributed on an "AS IS" BASIS,
33 create or replace perfetto table package_name_lookup as
34 with installed as (
35 select uid, string_agg(package_name, ',') as name
40 system(uid, name) as (
53 …create or replace perfetto macro add_package_name(src TableOrSubquery) returns TableOrSubquery as (
54 select A.*, ifnull(B.name, "uid=" || A.uid) as package_name
55 from $src as A
56 left join package_name_lookup as B
62 with base as (
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/intervals/
Doverlap.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
20 -- Each interval is a (ts, dur) pair and the overlap represented as a (ts, value)
34 RETURNS TableOrSubquery AS
39 _starts AS (
41 1 AS delta,
42 $ts_column AS ts
45 _ends AS (
47 -1 AS delta,
48 $ts_column + $dur_column AS ts
53 _events AS (
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/
Dtasks.sql13 RETURNS BOOL AS
31 RETURNS LONG AS
46 RETURNS LONG AS
58 RETURNS STRING AS
75 RETURNS STRING AS
79 -- Takes the category and determines whether it is "Java" only, as opposed to
84 RETURNS BOOL AS
93 RETURNS BOOL AS
98 -- The idea is that it should work as `type` in the `slice` table, pointing to
108 RETURNS STRING AS
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/export/
Dto_firefox_profile.sql11 -- distributed under the License is distributed on an "AS IS" BASIS,
16 -- Returns an instance of `RawMarkerTable` as defined in
19 RETURNS STRING AS
32 -- Returns an empty instance of `NativeSymbolTable` as defined in
35 RETURNS STRING AS
45 -- Returns an empty instance of `ResourceTable` as defined in
48 RETURNS STRING AS
60 CREATE PERFETTO TABLE _export_to_firefox_table AS
62 symbol AS (
65 …id ORDER BY id DESC RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) - 1 AS inline_depth,
[all …]

12345678910>>...1367