Searched refs:dip (Results 1 - 21 of 21) sorted by relevance

/external/blktrace/btt/
H A Ddevs.c64 struct d_info *dip; local
68 dip = list_entry(p, struct d_info, hash_head);
69 if (device == dip->device)
70 return dip;
76 void __dip_exit(struct d_info *dip) argument
78 list_del(&dip->all_head);
79 __destroy_heads(dip->heads);
80 region_exit(&dip->regions);
81 seeki_free(dip->seek_handle);
82 seeki_free(dip
101 struct d_info *dip = list_entry(p, struct d_info, all_head); local
127 struct d_info *dip = __dip_find(device); local
207 dip_find_sec(struct d_info *dip, enum iop_type type, __u64 sec) argument
220 struct d_info *dip; local
235 struct d_info *dip = __dip_find(dev); local
243 unplug(struct d_info *dip, double cur_time) argument
251 struct d_info *dip = __dip_find(dev); local
262 struct d_info *dip = __dip_find(dev); local
276 struct d_info *dip = list_entry(p, struct d_info, all_head); local
[all...]
H A Dlatency.c50 void latency_alloc(struct d_info *dip) argument
52 dip->q2d_ofp = latency_open(dip->device, q2d_name, "q2d");
53 dip->d2c_ofp = latency_open(dip->device, d2c_name, "d2c");
54 dip->q2c_ofp = latency_open(dip->device, q2c_name, "q2c");
57 void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency) argument
59 plat_x2c(dip->q2d_plat_handle, tstamp, latency);
60 latency_out(dip
63 latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency) argument
69 latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency) argument
[all...]
H A Dtrace_requeue.c25 r_iop->dip->n_qs++;
26 r_iop->dip->t_act_q += r_iop->dip->n_act_q;
27 r_iop->dip->n_act_q++;
H A Diostat.c25 #define INC_STAT(dip, fld) \
27 (dip)->stats. fld ++; \
28 (dip)->all_stats. fld ++; \
31 #define DEC_STAT(dip, fld) \
33 (dip)->stats. fld --; \
34 (dip)->all_stats. fld --; \
37 #define ADD_STAT(dip, fld, val) \
40 (dip)->stats. fld += __v; \
41 (dip)->all_stats. fld += __v; \
44 #define SUB_STAT(dip, fl
63 update_tot_qusz(struct d_info *dip, double now) argument
73 update_idle_time(struct d_info *dip, double now, int force) argument
83 __dump_stats(__u64 stamp, int all, struct d_info *dip, struct stats_t *asp) argument
194 struct d_info *dip; local
256 struct d_info *dip = iop->dip; local
269 struct d_info *dip = q_iop->dip; local
[all...]
H A Dtrace_queue.c25 seeki_add(q_iop->dip->q2q_handle, q_iop);
27 dip_update_q(q_iop->dip, q_iop);
38 q_iop->dip->n_qs++;
40 q_iop->dip->t_act_q += q_iop->dip->n_act_q;
41 q_iop->dip->n_act_q++;
H A Doutput.c25 ai_dip_t dip_q2q_dm_avg(struct d_info *dip) { return &dip->avgs.q2q_dm; } argument
26 ai_dip_t dip_q2a_dm_avg(struct d_info *dip) { return &dip->avgs.q2a_dm; } argument
27 ai_dip_t dip_q2c_dm_avg(struct d_info *dip) { return &dip->avgs.q2c_dm; } argument
29 ai_dip_t dip_q2q_avg(struct d_info *dip) { return &dip->avgs.q2q; } argument
30 ai_dip_t dip_q2c_avg(struct d_info *dip) { return &dip argument
31 dip_q2a_avg(struct d_info *dip) argument
32 dip_q2g_avg(struct d_info *dip) argument
33 dip_s2g_avg(struct d_info *dip) argument
34 dip_g2i_avg(struct d_info *dip) argument
35 dip_q2m_avg(struct d_info *dip) argument
36 dip_i2d_avg(struct d_info *dip) argument
37 dip_d2c_avg(struct d_info *dip) argument
97 __output_dip_avg(struct d_info *dip, void *arg) argument
122 __output_q2d_histo(struct d_info *dip, void *arg) argument
167 __output_dip_merge_ratio(struct d_info *dip, void *arg) argument
260 __output_dip_prep_ohead(struct d_info *dip, void *arg) argument
391 do_output_dip_seek_info(struct d_info *dip, FILE *ofp, int is_q2q) argument
438 __output_dip_seek_info(struct d_info *dip, void *arg) argument
443 __output_dip_q2q_seek_info(struct d_info *dip, void *arg) argument
520 __dip_output_plug(struct d_info *dip, void *arg) argument
566 __dip_output_plug_nios(struct d_info *dip, void *arg) argument
636 __dip_output_actQ(struct d_info *dip, void *arg) argument
833 __output_dev(struct d_info *dip, void *arg) argument
[all...]
H A Dtrace_issue.c28 if (d_iop->dip->n_act_q != 0)
29 d_iop->dip->n_act_q--;
31 seeki_add(d_iop->dip->seek_handle, d_iop);
32 bno_dump_add(d_iop->dip->bno_dump_handle, d_iop);
34 d_iop->dip->n_ds++;
37 aqd_issue(d_iop->dip->aqd_handle, BIT_TIME(d_iop->t.time));
56 q2d_histo_add(q_iop->dip->q2d_priv,
58 latency_q2d(q_iop->dip, d_iop->t.time,
H A Dunplug_hist.c48 struct d_info *dip; local
50 dip = __dip_find(u_iop->t.device);
51 if (dip && dip->up_hist_handle) {
54 struct hist_bkt *hbp = dip->up_hist_handle;
H A Dmisc.c141 char *make_dev_hdr(char *pad, size_t len, struct d_info *dip, int add_parens) argument
143 if (dip->devmap)
144 snprintf(pad, len, "%s", dip->devmap);
147 MAJOR(dip->device), MINOR(dip->device));
150 MAJOR(dip->device), MINOR(dip->device));
H A Dtrace_im.c29 q_iop = dip_find_sec(g_iop->dip, IOP_Q, g_iop->t.sector);
40 struct io *q_iop = dip_find_sec(s_iop->dip, IOP_Q, s_iop->t.sector);
48 struct io *q_iop = dip_find_sec(i_iop->dip, IOP_Q, i_iop->t.sector);
63 q_iop = dip_find_sec(m_iop->dip, IOP_Q, m_iop->t.sector);
69 if (m_iop->dip->n_act_q != 0)
70 m_iop->dip->n_act_q--;
H A Dinlines.h124 static inline void dip_update_q(struct d_info *dip, struct io *iop) argument
126 if (remapper_dev(dip->device))
127 update_lq(&dip->last_q, &dip->avgs.q2q_dm, iop->t.time);
129 update_lq(&dip->last_q, &dip->avgs.q2q, iop->t.time);
130 update_qregion(&dip->regions, iop->t.time);
163 iop->dip = dip_alloc(iop->t.device, iop);
184 avg_update(&_iop->dip->avgs. _avg , _time); \
190 avg_update_n(&_iop->dip
285 __get_root(struct d_info *dip, enum iop_type type) argument
291 dip_rb_ins(struct d_info *dip, struct io *iop) argument
301 dip_rb_fe(struct d_info *dip, enum iop_type type, struct io *iop, void (*fnc)(struct io *iop, struct io *this), struct list_head *head) argument
309 dip_rb_find_sec(struct d_info *dip, enum iop_type type, __u64 sec) argument
[all...]
H A Dtrace_complete.c57 FILE *pit_fp = c_iop->dip->pit_fp;
61 update_cregion(&c_iop->dip->regions, c_iop->t.time);
64 aqd_complete(c_iop->dip->aqd_handle, BIT_TIME(c_iop->t.time));
74 latency_q2c(q_iop->dip, q_iop->t.time, q2c);
80 latency_d2c(q_iop->dip, c_iop->t.time, d2c);
93 if (q_iop->dip->pit_fp) {
107 if (c_iop->dip->pit_fp) {
H A Dglobals.h154 struct d_info *dip; member in struct:io
214 struct io *dip_find_sec(struct d_info *dip, enum iop_type type, __u64 sec);
239 void latency_alloc(struct d_info *dip);
241 void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency);
242 void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency);
243 void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency);
248 char *make_dev_hdr(char *pad, size_t len, struct d_info *dip, int add_parens);
H A Dtrace.c69 make_dev_hdr(scratch, 15, iop->dip, 1),
H A Dproc.c225 if (remapper_dev(iop->dip->device))
/external/smack/src/org/jivesoftware/smackx/forward/
H A DForwarded.java101 DelayInfoProvider dip = new DelayInfoProvider(); field in class:Forwarded.Provider
112 di = (DelayInfo)dip.parseExtension(parser);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DRenderCoordinates.java73 * Handles conversion of a point from window-relative-local-dip or screen-pix
307 public float fromDipToPix(float dip) { argument
308 return dip * mDeviceScaleFactor;
/external/blktrace/btreplay/
H A Dbtreplay.c565 struct dev_info *dip; local
568 dip = list_entry(p, struct dev_info, head);
569 if (strcmp(dip->devnm, devnm) == 0)
573 dip = malloc(sizeof(*dip));
574 dip->devnm = strdup(devnm);
575 list_add_tail(&dip->head, &input_devs);
581 static void rem_input_dev(struct dev_info *dip) argument
583 list_del(&dip->head);
584 free(dip
959 __find_input_files(struct dev_info *dip) argument
[all...]
/external/libunwind/src/ia64/
H A DGtables.c651 unw_dyn_info_t di, *dip = &di; local
670 dip = &kernel_table;
675 unw_dyn_info_t di, *dip = &di;
719 return tdep_search_unwind_table (as, ip, dip, pi, need_unwind_info, arg);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 2345 milliseconds