/vbox/src/VBox/Additions/common/pam/ |
H A D | pam_vbox.cpp | 189 pam_conv *conv = NULL; local 190 int pamrc = pam_get_item(hPAM, PAM_CONV, (void **)&conv); 192 const pam_conv *conv = NULL; local 193 int pamrc = pam_get_item(hPAM, PAM_CONV, (const void **)&conv); 196 && conv) 206 pamrc = conv->conv(1 /* One message only */, &msg_p, &resp, conv->appdata_ptr);
|
/vbox/src/VBox/HostServices/auth/pam/ |
H A D | VBoxAuthPAM.c | 247 static int conv (int num_msg, const struct pam_message **msg, function 257 debug_printf("conv: ctx is NULL\n"); 261 debug_printf("conv: num %d u[%s] p[%d]\n", num_msg, ctx->szUser, ctx->szPassword? strlen (ctx->szPassword): 0); 277 debug_printf("conv: %d returning password [%d]\n", i, r[i].resp? strlen (r[i].resp): 0); 282 debug_printf("conv: %d returning name [%s]\n", i, r[i].resp); 286 debug_printf("conv: %d style %d: [%s]\n", i, msg[i]->msg_style, msg[i]->msg? msg[i]->msg: "(null)"); 342 pam_conversation.conv = conv;
|
/vbox/src/VBox/Devices/Audio/ |
H A D | audiosniffer.c | 138 t_sample *conv; member in struct:SnifferInputCtx 273 pCtx->conv = NULL; 384 pCtx->conv = mixeng_conv[(cChannels == 2)? 1: 0] /* stereo */ 414 && pCtx->conv) 436 pCtx->conv(ps, pvData, cs, &nominal_volume);
|
H A D | audio_int.h | 105 t_sample *conv; member in struct:HWVoiceIn 121 t_sample *conv; member in struct:SWVoiceOut
|
H A D | pulseaudio.c | 651 hw->conv(hw->conv_buf + hw->wpos, 656 hw->conv(hw->conv_buf, 663 hw->conv(hw->conv_buf + hw->wpos,
|
H A D | dsoundaudio.c | 1223 hw->conv (hw->conv_buf + hw->wpos, p1, ltmp, &pcm_in_volume); 1225 hw->conv (hw->conv_buf, (void *)((uintptr_t)p1 + (ltmp << hwshift)), len1 - ltmp, &pcm_in_volume); 1232 hw->conv (hw->conv_buf + hw->wpos, p2, ltmp, &pcm_in_volume); 1234 hw->conv (hw->conv_buf, (void *)((uintptr_t)p2 + (ltmp << hwshift)), len2 - ltmp, &pcm_in_volume);
|
H A D | audio_template.h | 160 sw->conv = mixeng_conv 287 hw->conv = mixeng_conv
|
H A D | solaudio.c | 735 hw->conv (psDst, pu8Src, csRead, &pcm_in_volume); 784 hw->conv (hw->conv_buf + bufs[i].add, p, nread >> hwshift,
|
H A D | ossaudio.c | 799 hw->conv (hw->conv_buf + bufs[i].add, p, nread >> hwshift, 802 hw->conv (hw->conv_buf + bufs[i].add, p, nread >> hwshift,
|
H A D | audio.c | 846 sw->conv = noop_conv; 1066 sw->conv (sw->buf, buf, swlim, &sw->vol); 1068 sw->conv (sw->buf, buf, swlim, &sum_out_volume);
|
H A D | winaudio.c | 462 hw->conv (hw->conv_buf + bufs[i].add, p, nread >> hwshift,
|
H A D | alsaaudio.c | 1073 hw->conv (dst, src, nread, &nominal_volume);
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | xmlIO.c | 2280 ret->conv = xmlBufferCreateSize(4000); 2284 xmlCharEncOutFunc(encoder, ret->conv, NULL); 2286 ret->conv = NULL; 2348 if (out->conv) { 2349 xmlBufferFree(out->conv); 2350 out->conv = NULL; 3150 if (out->conv == NULL) { 3151 out->conv = xmlBufferCreate(); 3163 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer); 3169 nbchars = out->conv [all...] |
H A D | xmlsave.c | 852 (buf->encoder == NULL) && (buf->conv == NULL) && 868 buf->conv = xmlBufferCreate(); 869 if (buf->conv == NULL) { 877 xmlCharEncOutFunc(buf->encoder, buf->conv, NULL); 947 xmlBufferFree(buf->conv); 949 buf->conv = NULL; 2094 if (out_buff->conv != NULL) { 2095 *doc_txt_len = out_buff->conv->use; 2096 *doc_txt_ptr = xmlStrndup(out_buff->conv->content, *doc_txt_len);
|
H A D | HTMLtree.c | 579 if (buf->conv != NULL) { 580 *size = buf->conv->use; 581 *mem = xmlStrndup(buf->conv->content, *size);
|
H A D | xmlwriter.c | 548 if (writer->out->conv == NULL) { 549 writer->out->conv = xmlBufferCreateSize(4000); 551 xmlCharEncOutFunc(encoder, writer->out->conv, NULL); 555 writer->out->conv = NULL;
|
H A D | ltmain.sh | 2101 passes="conv link" 2118 passes="conv scan dlopen dlpreopen link" 2120 *) passes="conv" 2226 test "$pass" = conv && continue 2231 if test "$pass" = conv; then 2263 if test "$pass" = conv; then 2312 if test "$pass" = conv; then 2374 if test "$pass" = conv; then 2400 fi # $pass = conv 3014 if test "$pass" != conv; the [all...] |
/vbox/src/VBox/VMM/VMMRC/ |
H A D | MMRamRCA.asm | 31 ; Read data in guest context, CDECL calling conv. 103 ; Write data in guest context, CDECL calling conv.
|
/vbox/src/VBox/VMM/VMMAll/ |
H A D | EMAllA.asm | 65 ; Emulate CMP instruction, CDECL calling conv. 129 ; Emulate AND instruction, CDECL calling conv. 298 ; Emulate OR instruction, CDECL calling conv. 468 ; Emulate XOR instruction, CDECL calling conv. 636 ; Emulate INC instruction, CDECL calling conv. 699 ; Emulate DEC instruction, CDECL calling conv. 762 ; Emulate ADD instruction, CDECL calling conv. 843 ; Emulate ADC instruction, CDECL calling conv. 929 ; Emulate SUB instruction, CDECL calling conv. 1010 ; Emulate BTR instruction, CDECL calling conv [all...] |
/vbox/src/libs/libxml2-2.6.31/include/libxml/ |
H A D | xmlIO.h | 149 xmlBufferPtr conv; /* if encoder != NULL buffer for output */ member in struct:_xmlOutputBuffer
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsNativeCharsetUtils.cpp | 767 nsNativeCharsetConverter conv; local 768 nsresult rv = conv.NativeToUnicode(&buf, &bufLeft, &result, &resultLeft); 788 nsNativeCharsetConverter conv; local 796 nsresult rv = conv.UnicodeToNative(&buf, &bufLeft, &p, &tempLeft);
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | utils.c | 2992 conv[] = local 3015 for (i = 0; i < sizeof(conv) / sizeof(*conv); ++i) 3019 if (format->id != conv[i].format_id) continue; 3021 ret = ((DWORD)((color->r * conv[i].r_mul) + 0.5f)) << conv[i].r_shift; 3022 ret |= ((DWORD)((color->g * conv[i].g_mul) + 0.5f)) << conv[i].g_shift; 3023 ret |= ((DWORD)((color->b * conv[i].b_mul) + 0.5f)) << conv[ [all...] |
/vbox/src/libs/libxml2-2.6.31/python/ |
H A D | libxml.c | 2809 if (buf->conv != NULL) { 2810 len = buf->conv->use; 2811 c_retval = buf->conv->content; 2812 buf->conv->content = NULL; 2845 if (buf->conv != NULL) { 2846 len = buf->conv->use; 2847 c_retval = buf->conv->content; 2848 buf->conv->content = NULL; 2887 if (buf->conv != NULL) { 2888 len = buf->conv [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | surface_base.c | 842 const struct d3dfmt_convertor_desc *conv; local 846 conv = find_convertor(source->resource.format_desc->format, to_fmt); 847 if(!conv) { 889 conv->convert(lock_src.pBits, lock_dst.pBits, lock_src.Pitch, lock_dst.Pitch, 1176 /* The conv function writes a FIXME */
|
/vbox/src/VBox/Storage/ |
H A D | VDI.cpp | 38 #define SET_ENDIAN_U32(conv, u32) (conv == VDIECONV_H2F ? RT_H2LE_U32(u32) : RT_LE2H_U32(u32)) 39 #define SET_ENDIAN_U64(conv, u64) (conv == VDIECONV_H2F ? RT_H2LE_U64(u64) : RT_LE2H_U64(u64))
|