16221623162416251626162716281629
if (value == null) return BooleanValue.FALSE; return StringModule.sscanf(env, value, format, args); } catch (IOException e) { throw new QuercusModuleException(e); } }
17131714171517161717171817191720
if (os == null) return BooleanValue.FALSE; return LongValue.create(os.write(value, length)); } catch (IOException e) { throw new QuercusModuleException(e); } }
22612262226322642265226622672268
env.warning(L.l("{0} is not a directory", path.getFullPath())); return BooleanValue.FALSE; } } catch (IOException e) { throw new QuercusModuleException(e); } }
27952796279727982799280028012802
} } return result; } catch (IOException e) { throw new QuercusModuleException(e); } }
221222223224225226227228
try { return QuercusMimeUtility.decodeMime(env, str, encoding); } catch (UnsupportedEncodingException e) { throw new QuercusModuleException(e.getMessage()); } }
377378379380381382383384385
linefeed, 76); return env.createStringOld(mime); } catch (UnsupportedEncodingException e) { throw new QuercusModuleException(e.getMessage()); } }
124125126127128129130131132133134
sb.append(ptr.getBuffer(), 0, ptr.getLength()); } return sb; } catch (IOException e) { throw new QuercusModuleException(e); } finally { TempCharBuffer.free(tb); }
344345346347348349350351352353
} sb.append(entity); } } catch (IOException e) { throw new QuercusModuleException(e); } return sb; }
10101011101210131014101510161017
public final void flush() { try { getOut().flush(); } catch (IOException e) { throw new QuercusModuleException(e); } }
10221023102410251026102710281029
public final void print(String v) { try { getOut().print(v); } catch (IOException e) { throw new QuercusModuleException(e); } }