HomeSort by relevance Sort by last modified time
    Searched full:info (Results 426 - 450 of 40308) sorted by null

<<11121314151617181920>>

  /external/iptables/extensions/
libxt_CONNMARK.c 127 struct xt_connmark_tginfo1 *info = (void *)target->data; local
133 info->ctmask = UINT32_MAX;
134 info->nfmask = UINT32_MAX;
162 struct xt_connmark_tginfo1 *info = cb->data; local
167 info->mode = XT_CONNMARK_SET;
168 info->ctmark = cb->val.mark;
169 info->ctmask = cb->val.mask;
172 info->mode = XT_CONNMARK_SET;
173 info->ctmark = cb->val.mark;
174 info->ctmask = cb->val.mark | cb->val.mask
252 const struct xt_connmark_tginfo1 *info = (const void *)target->data; local
330 const struct xt_connmark_tginfo1 *info = (const void *)target->data; local
353 const struct xt_connmark_tginfo1 *info = local
    [all...]
libxt_connlabel.c 58 struct xt_connlabel_mtinfo *info = cb->data; local
69 info->bit = tmp;
71 info->options |= XT_CONNLABEL_OP_INVERT;
74 info->options |= XT_CONNLABEL_OP_SET;
93 connlabel_mt_print_op(const struct xt_connlabel_mtinfo *info, const char *prefix)
95 if (info->options & XT_CONNLABEL_OP_SET)
102 const struct xt_connlabel_mtinfo *info = (const void *)match->data; local
103 const char *name = connlabel_get_name(info->bit);
106 if (info->options & XT_CONNLABEL_OP_INVERT)
109 printf(" %u", info->bit)
119 const struct xt_connlabel_mtinfo *info = (const void *)match->data; local
134 const struct xt_connlabel_mtinfo *info = local
    [all...]
libxt_pkttype.c 68 static void parse_pkttype(const char *pkttype, struct xt_pkttype_info *info)
75 info->pkttype=supported_types[i].pkttype;
84 struct xt_pkttype_info *info = cb->data; local
87 parse_pkttype(cb->arg, info);
89 info->invert = 1;
92 static void print_pkttype(const struct xt_pkttype_info *info)
97 if(supported_types[i].pkttype==info->pkttype)
103 printf("%d", info->pkttype); /* in case we didn't find an entry in named-packtes */
109 const struct xt_pkttype_info *info = (const void *)match->data; local
111 printf(" PKTTYPE %s= ", info->invert ? "!" : "")
117 const struct xt_pkttype_info *info = (const void *)match->data; local
146 const struct xt_pkttype_info *info = (const void *)params->match->data; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java 69 public ItemInfo info; field in class:LauncherAccessibilityDelegate.DragInfo
106 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
107 super.onInitializeAccessibilityNodeInfo(host, info);
108 addSupportedActions(host, info, false);
111 public void addSupportedActions(View host, AccessibilityNodeInfo info, boolean fromKeyboard) {
118 info.addAction(mActions.get(NotificationListener.getInstanceIfConnected() != null
124 info.addAction(mActions.get(target.getAccessibilityAction()));
132 info.addAction(mActions.get(MOVE));
135 info.addAction(mActions.get(MOVE_TO_WORKSPACE));
138 info.addAction(mActions.get(RESIZE))
190 ShortcutInfo info = (ShortcutInfo) item; local
212 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) item; local
    [all...]
  /external/selinux/libsemanage/src/
parse_utils.h 24 void *parse_arg, parse_info_t ** info);
27 extern void parse_release(parse_info_t * info);
30 extern int parse_open(semanage_handle_t * handle, parse_info_t * info);
33 extern void parse_close(parse_info_t * info);
36 extern void parse_dispose_line(parse_info_t * info);
39 extern int parse_skip_space(semanage_handle_t * handle, parse_info_t * info);
42 extern int parse_assert_noeof(semanage_handle_t * handle, parse_info_t * info);
46 extern int parse_assert_space(semanage_handle_t * handle, parse_info_t * info);
51 parse_info_t * info, const char ch);
57 parse_info_t * info, const char *assert_str)
    [all...]
users_extra_file.c 42 parse_info_t * info,
48 if (parse_skip_space(handle, info) < 0)
50 if (!info->ptr)
54 if (parse_assert_str(handle, info, "user") < 0)
56 if (parse_assert_space(handle, info) < 0)
60 if (parse_fetch_string(handle, info, &str, ' ') < 0)
68 if (parse_assert_space(handle, info) < 0)
70 if (parse_assert_str(handle, info, "prefix") < 0)
72 if (parse_assert_space(handle, info) < 0)
76 if (parse_fetch_string(handle, info, &str, ';') < 0
    [all...]
  /external/skia/gm/
imagemasksubset.cpp 29 MaskGenerator(const SkImageInfo& info) : INHERITED(info) {}
31 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&)
33 SkImageInfo surfaceInfo = info;
34 if (kAlpha_8_SkColorType == info.colorType()) {
49 [](SkCanvas*, const SkImageInfo& info) -> sk_sp<SkImage> {
50 return make_mask(SkSurface::MakeRaster(info));
54 [](SkCanvas* c, const SkImageInfo& info) -> sk_sp<SkImage> {
57 surface = SkSurface::MakeRenderTarget(c->getGrContext(), SkBudgeted::kNo, info);
59 return make_mask(surface ? surface : SkSurface::MakeRaster(info));
75 const SkImageInfo info = SkImageInfo::MakeA8(kSize.width(), kSize.height()); local
    [all...]
  /external/skqp/gm/
imagemasksubset.cpp 29 MaskGenerator(const SkImageInfo& info) : INHERITED(info) {}
31 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&)
33 SkImageInfo surfaceInfo = info;
34 if (kAlpha_8_SkColorType == info.colorType()) {
49 [](SkCanvas*, const SkImageInfo& info) -> sk_sp<SkImage> {
50 return make_mask(SkSurface::MakeRaster(info));
54 [](SkCanvas* c, const SkImageInfo& info) -> sk_sp<SkImage> {
57 surface = SkSurface::MakeRenderTarget(c->getGrContext(), SkBudgeted::kNo, info);
59 return make_mask(surface ? surface : SkSurface::MakeRaster(info));
75 const SkImageInfo info = SkImageInfo::MakeA8(kSize.width(), kSize.height()); local
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/apps/
modelist.c 36 EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *info; local
39 &info);
44 &SizeOfInfo, &info);
54 Print(L"%c%d: %dx%d ", memcmp(info,gop->Mode->Info,sizeof(*info)) == 0 ? '*' : ' ', i,
55 info->HorizontalResolution,
56 info->VerticalResolution);
57 switch(info->PixelFormat) {
66 info->PixelInformation.RedMask
    [all...]
  /external/icu/icu4c/source/io/
uscanf_p.cpp 120 u_scanf_spec_info *info = &(spec->fInfo); local
125 info->fWidth = -1;
126 info->fSpec = 0x0000;
127 info->fPadChar = 0x0020;
128 info->fSkipArg = FALSE;
129 info->fIsLongDouble = FALSE;
130 info->fIsShort = FALSE;
131 info->fIsLong = FALSE;
132 info->fIsLongLong = FALSE;
133 info->fIsString = TRUE
306 ufmt_type_info info; member in struct:u_scanf_info
1354 ufmt_type_info info; local
    [all...]
uprntf_p.cpp 81 * @param info A pointer to a <TT>u_printf_spec_info</TT> struct containing
91 const u_printf_spec_info *info,
95 ufmt_type_info info; member in struct:u_printf_info
125 const u_printf_spec_info *info,
130 if(info->fShowSign) {
136 if (info->fSpace) {
164 const u_printf_spec_info *info,
169 if(info->fShowSign) {
184 const u_printf_spec_info *info,
188 (void)info;
1235 u_printf_spec_info *info = &(spec.fInfo); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AllAppsList.java 74 public void add(AppInfo info, LauncherActivityInfo activityInfo) {
75 if (!mAppFilter.shouldShowApp(info.componentName)) {
78 if (findAppInfo(info.componentName, info.user) != null) {
81 mIconCache.getTitleAndIcon(info, activityInfo, true /* useLowResIcon */);
83 data.add(info);
84 added.add(info);
93 PromiseAppInfo info = new PromiseAppInfo(installInfo); local
94 mIconCache.getTitleAndIcon(info, info.usingLowResIcon)
141 AppInfo info = data.get(i); local
155 AppInfo info = data.get(i); local
    [all...]
  /test/vts/harnesses/tradefed/tests/res/testtype/
vts_multi_device_test_parser_output_timeout.txt 1 [VTS-Example] 07-01 08:54:59.495 INFO ==========> SampleLightFuzzTest <==========
2 [VTS-Example] 07-01 08:55:01.215 INFO Exception occurred in command: killall vts_hal_agent > /dev/null 2&>1
3 [VTS-Example] 07-01 08:55:01.258 INFO Exception occurred in command: killall vts_hal_driver32 > /dev/null 2&>1
4 [VTS-Example] 07-01 08:55:01.296 INFO Exception occurred in command: killall vts_hal_driver64 > /dev/null 2&>1
5 [VTS-Example] 07-01 08:55:02.299 INFO sending a command (type SET_HOST_INFO)
6 [VTS-Example] 07-01 08:55:02.312 INFO resp 2 bytes
7 [VTS-Example] 07-01 08:55:02.313 INFO TcpServer Thread-2 started (127.0.0.1:5365)
8 [VTS-Example] 07-01 08:55:02.313 INFO sending a command (type SET_HOST_INFO)
9 [VTS-Example] 07-01 08:55:02.323 INFO resp 2 bytes
10 [VTS-Example] 07-01 08:55:02.324 INFO sending a command (type LIST_HALS
    [all...]
  /external/clang/lib/Index/
IndexSymbol.cpp 54 SymbolInfo Info;
55 Info.Kind = SymbolKind::Unknown;
56 Info.SubKinds = SymbolSubKindSet();
57 Info.Lang = SymbolLanguage::C;
62 Info.Kind = SymbolKind::Struct; break;
64 Info.Kind = SymbolKind::Union; break;
66 Info.Kind = SymbolKind::Class;
67 Info.Lang = SymbolLanguage::CXX;
70 Info.Kind = SymbolKind::Protocol;
71 Info.Lang = SymbolLanguage::CXX
    [all...]
  /external/compiler-rt/test/msan/Linux/
ioctl_sound.cc 22 void *info = malloc(sz + 1); local
23 assert(__msan_test_shadow(info, sz) == 0);
24 assert(ioctl(fd, SNDRV_CTL_IOCTL_CARD_INFO, info) >= 0);
25 assert(__msan_test_shadow(info, sz + 1) == sz);
27 free(info);
  /external/compiler-rt/test/msan/
sigwaitinfo.cc 19 siginfo_t info; local
20 int res = sigwaitinfo(&s, &info);
23 assert(info.si_signo == SIGUSR1);
24 assert(-1 == __msan_test_shadow(&info, sizeof(info)));
  /external/libvpx/libvpx/examples/
vp9_lossless_encoder.c 66 VpxVideoInfo info; local
71 vp9_zero(info);
80 info.codec_fourcc = encoder->fourcc;
81 info.frame_width = (int)strtol(argv[1], NULL, 0);
82 info.frame_height = (int)strtol(argv[2], NULL, 0);
83 info.time_base.numerator = 1;
84 info.time_base.denominator = fps;
86 if (info.frame_width <= 0 || info.frame_height <= 0 ||
87 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0)
    [all...]
  /external/llvm/test/DebugInfo/
debuglineinfo-macho.test 20 TEST_SIMPLE-NEXT: Line info @ 0: simple.c, line:1
21 TEST_SIMPLE-NEXT: Line info @ 7: simple.c, line:2
22 TEST_SIMPLE-NOT: Line info @ 11: simple.c, line:2
25 TEST_MULTIPLE-NEXT: Line info @ 0: multiple.c, line:5
26 TEST_MULTIPLE-NEXT: Line info @ 7: multiple.c, line:6
27 TEST_MULTIPLE-NEXT: Line info @ 16: multiple.c, line:9
28 TEST_MULTIPLE-NEXT: Line info @ 21: multiple.c, line:9
29 TEST_MULTIPLE-NEXT: Line info @ 26: multiple.c, line:7
30 TEST_MULTIPLE-NEXT: Line info @ 33: multiple.c, line:10
31 TEST_MULTIPLE-NOT: Line info @ 48: multiple.c, line:1
    [all...]
  /external/valgrind/none/tests/linux/
blockfault.c 6 static void handler(int sig, siginfo_t *info, void *v)
8 printf("info: sig=%d code=%d addr=%p\n",
9 info->si_signo, info->si_code, info->si_addr);
  /external/valgrind/none/tests/solaris/
blockfault.c 6 static void handler(int sig, siginfo_t *info, void *v)
8 printf("info: sig=%d code=%d addr=%p\n",
9 info->si_signo, info->si_code, info->si_addr);
  /hardware/interfaces/radio/1.2/
IRadioResponse.hal 28 * @param info Response info struct containing response type, serial no. and error
43 oneway getCellInfoListResponse_1_2(RadioResponseInfo info, vec<CellInfo> cellInfo);
46 * @param info Response info struct containing response type, serial no. and error
52 oneway getIccCardStatusResponse_1_2(RadioResponseInfo info, CardStatus cardStatus);
55 * @param info Response info struct containing response type, serial no. and error
63 oneway setSignalStrengthReportingCriteriaResponse(RadioResponseInfo info);
66 * @param info Response info struct containing response type, serial no. and erro
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
arc-dis.c 92 #define ARRANGE_ENDIAN(info, buf) \
93 (info->endian == BFD_ENDIAN_LITTLE ? bfd_getm32 (bfd_getl32 (buf)) \
265 struct disassemble_info *info)
300 status = (*info->read_memory_func) (memaddr + *insn_len, buffer,
301 4, info);
305 limm = ARRANGE_ENDIAN (info, buffer);
348 unsigned isa_mask, struct disassemble_info *info,
371 (*info->fprintf_func) (info->stream,
390 status = (*info->read_memory_func) (memaddr + *insn_len, buffer
    [all...]
  /external/adhd/cras/src/server/
cras_hfp_iodev.c 24 struct hfp_info *info; member in struct:hfp_io
56 if (!hfp_info_running(hfpio->info))
62 return hfp_buf_queued(hfpio->info, iodev);
73 iodev->buffer_size = hfp_buf_size(hfpio->info, iodev);
88 if (hfp_info_running(hfpio->info))
98 err = hfp_info_start(sk, mtu, hfpio->info);
103 hfp_info_add_iodev(hfpio->info, iodev);
106 iodev->buffer_size = hfp_buf_size(hfpio->info, iodev);
118 hfp_info_rm_iodev(hfpio->info, iodev);
119 if (hfp_info_running(hfpio->info) && !hfp_info_has_iodev(hfpio->info))
    [all...]
  /external/llvm/include/llvm/Option/
Option.h 69 const OptTable::Info *Info;
73 Option(const OptTable::Info *Info, const OptTable *Owner);
76 return Info != nullptr;
80 assert(Info && "Must have a valid info!");
81 return Info->ID;
85 assert(Info && "Must have a valid info!");
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
tex-swizzle.c 8 static struct graw_info info; variable in typeref:struct:graw_info
51 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
52 info.ctx->bind_vertex_elements_state(info.ctx, handle);
58 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
64 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
80 handle = graw_parse_vertex_shader(info.ctx, text);
81 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]

Completed in 1011 milliseconds

<<11121314151617181920>>