HomeSort by relevance Sort by last modified time
    Searched defs:sec (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /external/blktrace/btt/doc/
btt.tex 30 \section{\label{sec:intro}Introduction}
55 section~\ref{sec:cmd-line}), as we felt that discussing some of the
66 \newpage\section{\label{sec:getting-started}Getting Started}
78 will use \texttt{btt} with -- section~\ref{sec:o-D} shows how you
102 \newpage\section{\label{sec:output-overview}Output Overview}
347 \subsection*{\label{sec:detailed-data}Detailed Data}
350 \texttt{--all-data} or \texttt{-A} argument (see section~\ref{sec:o-A})
426 \newpage\section{\label{sec:data-files}Data Files Output}
434 provided in section~\ref{sec:activity}.
437 incoming IO requests, for more information see section~\ref{sec:qhist}
    [all...]
  /external/blktrace/doc/
blktrace.tex 29 \section{\label{sec:intro}Introduction}
57 \newpage\section{\label{sec:quick-start}Quick Start Guide}
63 \subsection{\label{sec:get-blktrace}Retrieving blktrace}
73 \subsection{\label{sec:patching}Patching and configuring the Linux kernel}
107 \subsection{\label{sec:mount}Mounting the debugfs file system}
127 \subsection{\label{sec:build}Build the tools}
136 \subsection{\label{sec:live-blktrace}blktrace -- live}
197 \subsection{\label{sec:pc-blktrace}blktrace -- SCSI commands}
220 \subsection{\label{sec:blktrace-post}blktrace -- post-processing}
333 \newpage\section{\label{sec:blktrace-ug}blktrace User Guide
    [all...]
  /bionic/libc/wchar/
wcsxfrm.c 37 int prim, sec, l; local
  /external/tcpdump/
print-timed.c 51 long sec, usec; local
89 sec = EXTRACT_32BITS(&tsp->tsp_time.tv_sec);
95 if (sec < 0 && usec != 0) {
96 sec++;
97 if (sec == 0)
101 printf("%ld.%06ld", sec, usec);
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_time.h 50 uint16_t sec; member in struct:__db_system_time_
  /external/bluetooth/bluez/attrib/
utils.c 50 BtIOSecLevel sec; local
78 sec = BT_IO_SEC_MEDIUM;
80 sec = BT_IO_SEC_HIGH;
82 sec = BT_IO_SEC_LOW;
90 BT_IO_OPT_SEC_LEVEL, sec,
98 BT_IO_OPT_SEC_LEVEL, sec,
  /external/icu4c/test/intltest/
calcasts.h 36 int32_t sec; member in struct:CalendarCaseTest::TestCase
  /external/qemu/distrib/sdl-1.2.12/src/thread/pth/
SDL_syscond.c 126 int sec; local
135 sec = ms/1000;
136 ev = pth_event(PTH_EVENT_TIME, pth_timeout(sec,(ms-sec*1000)*1000));
  /frameworks/av/services/audioflinger/
AudioWatchdog.cpp 64 time_t sec = newTs.tv_sec - mOldTs.tv_sec; local
67 --sec;
71 // cycleNs is same as sec*1e9 + nsec, but limited to about 4 seconds
73 if (sec > 0) {
74 if (sec < 4) {
75 cycleNs += sec * 1000000000;
80 mLogTs.tv_sec += sec;
  /frameworks/compile/linkloader/include/impl/
ELFSymbol.hxx 159 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
160 rsl_assert(sec != 0 && "STT_OBJECT with null section.");
163 static_cast<ELFSectionBitsTy const &>(*sec);
224 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
225 rsl_assert(sec != 0 && "STT_FUNC with null section.");
228 static_cast<ELFSectionProgBitsTy const &>(*sec);
254 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
255 rsl_assert(sec != 0 && "STT_SECTION with null section.");
258 static_cast<ELFSectionBitsTy const &>(*sec);
283 ELFSectionTy const *sec = owner->getSectionByIndex(idx) local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
spray.h 19 u_int sec; member in struct:spraytimeval
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.h 19 u_int sec; member in struct:spraytimeval
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.h 19 u_int sec; member in struct:spraytimeval
  /bionic/libc/kernel/common/linux/
ktime.h 30 s32 sec, nsec; member in struct:__anon337::__anon338
32 s32 nsec, sec;
  /development/ndk/platforms/android-3/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon993::__anon994
25 s32 nsec, sec;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/sec/
ECPrivateKeyStructure.java 1 package org.bouncycastle.asn1.sec;
22 * the elliptic curve private key object from SEC 1
  /external/libxslt/libxslt/
documents.c 295 if (ctxt->sec != NULL) {
298 res = xsltCheckRead(ctxt->sec, ctxt, URI);
362 xsltSecurityPrefsPtr sec; local
370 sec = xsltGetDefaultSecurityPrefs();
371 if (sec != NULL) {
374 res = xsltCheckRead(sec, NULL, URI);
  /external/openssl/ssl/
s2_enc.c 154 unsigned char sequence[4],*p,*sec,*act; local
161 sec=s->s2->write_key;
168 sec=s->s2->read_key;
179 EVP_DigestUpdate(&c,sec,
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
StringUtils.java 117 final long sec = time / 1000; local
120 return String.format("%02d:%02d:%02d.%01d", hours, mins, sec, time);
136 final long sec = time / 1000; local
137 return String.format("%02d:%02d:%02d", hours, mins, sec);
153 final long sec = time / 1000; local
157 return String.format(context.getString(R.string.seconds), sec);
159 return String.format(context.getString(R.string.minute_and_seconds), sec);
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon20993::__anon20994
25 s32 nsec, sec;
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon27046::__anon27047
25 s32 nsec, sec;
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon27409::__anon27410
25 s32 nsec, sec;
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon27763::__anon27764
25 s32 nsec, sec;
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon28117::__anon28118
25 s32 nsec, sec;
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon28530::__anon28531
25 s32 nsec, sec;

Completed in 1674 milliseconds

1 2 3 4 5 6 7