本文整理汇总了C#中grn_ctx类的典型用法代码示例。如果您正苦于以下问题:C# grn_ctx类的具体用法?C# grn_ctx怎么用?C# grn_ctx使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
grn_ctx类属于命名空间,在下文中一共展示了grn_ctx类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: grn_expr_syntax_escape_query
public static extern grn_rc grn_expr_syntax_escape_query(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string query, int query_size, ref grn_table_cursor escaped_query) ;
示例2: grn_ctx_fin
public static extern GroongaResultCode grn_ctx_fin(ref grn_ctx ctx);
示例3: grn_ctx_recv
public static extern UInt32 grn_ctx_recv(ref grn_ctx ctx, out IntPtr str, out UInt32 str_len, out Int32 flags);
示例4: grn_ctx_recv
public static extern uint grn_ctx_recv(ref grn_ctx ctx, ref System.IntPtr str, ref uint str_len, ref int flags) ;
示例5: grn_dat_remove
public static extern grn_rc grn_dat_remove(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string path) ;
示例6: grn_table_tokenize
public static extern System.IntPtr grn_table_tokenize(ref grn_ctx ctx, ref grn_table_cursor table, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string str, uint str_len, ref grn_table_cursor buf, byte addp) ;
示例7: grn_ctx_connect
public static extern grn_rc grn_ctx_connect(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string host, int port, int flags) ;
示例8: grn_table_select
public static extern System.IntPtr grn_table_select(ref grn_ctx ctx, ref grn_table_cursor table, ref grn_table_cursor expr, ref grn_table_cursor res, grn_operator op) ;
示例9: grn_obj_columns
public static extern int grn_obj_columns(ref grn_ctx ctx, ref grn_table_cursor table, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string str, uint str_size, ref grn_table_cursor res) ;
示例10: grn_ctx_pop
public static extern System.IntPtr grn_ctx_pop(ref grn_ctx ctx) ;
示例11: grn_expr_alloc
public static extern System.IntPtr grn_expr_alloc(ref grn_ctx ctx, ref grn_table_cursor expr, uint domain, ushort flags) ;
示例12: grn_ctx_push
public static extern grn_rc grn_ctx_push(ref grn_ctx ctx, ref grn_table_cursor obj) ;
示例13: grn_expr_exec
public static extern System.IntPtr grn_expr_exec(ref grn_ctx ctx, ref grn_table_cursor expr, int nargs) ;
示例14: grn_expr_compile
public static extern grn_rc grn_expr_compile(ref grn_ctx ctx, ref grn_table_cursor expr) ;
示例15: grn_table_create_for_group
public static extern System.IntPtr grn_table_create_for_group(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string name, uint name_size, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string path, ref grn_table_cursor group_key, ref grn_table_cursor value_type, uint max_n_subrecs) ;